# create-boot **Repository Path**: kirklin/create-boot ## Basic Information - **Project Name**: create-boot - **Description**: Scaffolding Your First Web App Project - **Primary Language**: TypeScript - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-12-21 - **Last Updated**: 2022-12-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # create-boot ## Scaffolding Your First Web App Project ![Introduction](README.assets/Introduction.png) > **Compatibility Note:** > Vite requires [Node.js](https://nodejs.org/en/) version 14.18+, 16+. However, some templates require a higher Node.js version to work, please upgrade if your package manager warns about it. With NPM: ```bash $ npm create boot@latest ``` With Yarn: ```bash $ yarn create boot ``` With PNPM: ```bash $ pnpm create boot ``` 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 Vite + Vue project, run: ```bash # npm 6.x npm create boot@latest my-vite-app --template vite # npm 7+, extra double-dash is needed: npm create boot@latest my-vite-app -- --template vite # yarn yarn create boot my-vite-app --template vite # pnpm pnpm create boot my-vite-app --template vite ``` Currently supported template presets include: - `vite` You can use `.` for the project name to scaffold in the current directory. ## Thanks This project is based on [create-vite](https://github.com/vitejs/vite/tree/main/packages/create-vite)