// 全局安装 vue-cli
npm install -g @vue/cli
// 使用 vue-cli 创建项目
vue create ProjectName
// 全局安装 create-react-app
npm install -g create-react-app
// 使用 create-react-app 创建项目
create-react-app ProjectName
// 使用 vite 安装项目,这里 init 不能改为 i,i 是 install 的简写
npm init vite
// 项目名称
? Project name: » vite-project
// 选择要使用的框架,我这里选的是 Vue
? Select a framework: » - Use arrow-keys. Return to submit.
vanilla
> vue
react
preact
lit
svelte
// 使用 js 还是 ts、、、
? Select a variant: » - Use arrow-keys. Return to submit.
> JavaScript
TypeScript
Customize with create-vue
Nuxt
npm init vue@latest
✔ Project name: … <your-project-name>
✔ Add TypeScript? … No / Yes
✔ Add JSX Support? … No / Yes
✔ Add Vue Router for Single Page Application development? … No / Yes
✔ Add Pinia for state management? … No / Yes
✔ Add Vitest for Unit testing? … No / Yes
✔ Add Cypress for both Unit and End-to-End testing? … No / Yes
✔ Add ESLint for code quality? … No / Yes
✔ Add Prettier for code formatting? … No / Yes
Scaffolding project in ./<your-project-name>...
Done.
// 直接安装 Vue3 项目
npm init vite-app ProjectName
这两种安装方式都没有安装依赖包,需要进入文件 npm i 安装依赖包