npx, which means there is nothing to globally install before you can scaffold your first project. This page covers the system requirements, how npx works, the optional global install approach, and how to verify your environment is ready.
System requirements
Slik Dev has minimal requirements. You need:- Node.js v18 or later (LTS release recommended)
- npm v7 or later (bundled with Node.js v15+), or an equivalent package manager such as yarn or pnpm
- A terminal with internet access to fetch the package on first run
npm v7+ is required because Slik Dev uses workspaces and peer dependency resolution features introduced in that version. Running
npm --version after installing Node.js will confirm you have a compatible release.Supported operating systems
Slik Dev runs on all major operating systems:How npx works
npx is a package runner that ships with npm. When you run npx create-slik@latest, it:
- Checks whether
create-slikis already cached locally - Downloads the latest published version from the npm registry if it is not cached
- Executes the package immediately without permanently installing it to your system
node_modules stays clean.
Run Slik without installing
The recommended approach is to usenpx directly every time:
my-app with the name you want for your project directory. The CLI will take it from there.
Optional: install globally
If you prefer to have thecreate-slik command available without npx, you can install it globally:
1
Install the package globally
2
Run the global command
Once installed, you can scaffold new projects without
npx:3
Keep it up to date
Because the global install pins a specific version, you will need to update it manually when new releases ship:
Verify your environment
Before scaffolding, confirm your versions are compatible:1
Check Node.js
v18.0.0 or higher. If the command is not found, download Node.js and install the LTS release for your operating system.2
Check npm
7.0.0 or higher. npm is installed automatically alongside Node.js, so upgrading Node.js is usually sufficient.3
Confirm npx is available
npx is ready. It ships with npm and does not require a separate install.Installing Node.js
If Node.js is not yet on your machine, the fastest way to install it depends on your operating system:- macOS: Use Homebrew —
brew install node— or download the installer from nodejs.org - Linux: Use your distribution’s package manager, or use nvm to manage multiple Node versions
- Windows: Download the installer from nodejs.org, or use nvm-windows
Next steps
Once your environment is verified, head to the Quickstart to scaffold your first Slik project.Quickstart
Run
npx create-slik@latest and have a full-stack SaaS app running in under 60 seconds.Introduction
Learn what Slik Engine generates and how it compares to traditional boilerplates.