Compatibility Note: requires Node.js version 18+, 20+. However, some templates require a higher Node.js version to work, please upgrade if your package manager warns about it.
With NPM:
$ npm create boot@latestWith Yarn:
$ yarn create bootWith PNPM:
$ pnpm create bootWith Bun:
$ bunx create-bootThen 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 project, run:
# npm 7+, extra double-dash is needed:
npm create boot@latest my-app -- --template vue
# yarn
yarn create boot my-app --template vue
# pnpm
pnpm create boot my-app --template vue
# Bun
bunx create-boot my-app --template vueCurrently supported template presets include:
vuereactkirklinvite
You can use . for the project name to scaffold in the current directory.
This project is based on create-vite
