Skip to content

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@latest
bash
$ yarn create runow
bash
$ pnpm create runow
bash
$ bun create runow

Then 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 + TypeScript project, run:

bash
# npm 7+, extra double-dash is needed:
$ npm create runow@latest your-app-name -- --template react-ts
bash
$ yarn create runow your-app-name --template react-ts
bash
$ pnpm create runow your-app-name --template react-ts
bash
$ bun create runow your-app-name --template react-ts