使用脚手架创建项目

react项目的创建
快速开始

  1. npm/npx create-react-app 项目名称
  2. cd 项目名称
  3. npm start

如果你此前已经通过执行 npm install -g create-react-app 全局安装了 create-react-app,执行 npm uninstall -g create-react-app 将它卸载掉,目的是确保 npx 总是使用最新版本的 create-react-app。
创建react新项目

  1. npx create-react-app my-app

:::info 注:npx 需要 npm 5.2+ 以及更高版本 ::: 创建命令

  1. create-react-app 项目名称

yarn版

  1. yarn create-react-app 项目名称

创建ts版

  1. create-react-app 项目名称 --template typescript

利用vue脚手架创建xiangmu(vue2、vue3均可)

  1. vue create 项目名称

利用vite脚手架创建vue3项目

  1. npm create vite@latest