Getting Started
Scaffolding Your First Runow Project
Compatibility Note
Runow requires Node.js version 18+ or 20+. However, some templates require a higher Node.js version to work, please upgrade if your package manager warns about it.
bash
$ npm create runow@latestbash
$ yarn create runowbash
$ pnpm create runowbash
$ bun create runowThen follow the prompts!
You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a React + Vite project, run:
bash
# npm 7+, extra double-dash is needed:
$ npm create runow@latest your-app-name -- --template react-vitebash
$ yarn create runow your-app-name --template react-vitebash
$ pnpm create runow your-app-name --template react-vitebash
$ bun create runow your-app-name --template react-vite