Create React App global cli bug All In One
CRA
npx
# yarn global remove create-react-app
# npm uninstall -g create-react-app
$ npx create-react-app cra-app
# 并行
$ cd my-app & npm start
# 串行
$ cd my-app && npm start
npm
$ npm init react-app cra-app
yarn
$ yarn create react-app cra-app
bug
$ npm uninstall -g create-react-app
up to date, audited 1 package in 189ms
found 0 vulnerabilities
$ npx create-react-app my-app
Need to install the following packages:
create-react-app
Ok to proceed? (y) y
You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.1).
We no longer support global installation of Create React App.
Please remove any global installs with one of the following commands:
- npm uninstall -g create-react-app
- yarn global remove create-react-app
The latest instructions for creating a new app can be found here:
https://create-react-app.dev/docs/getting-started/
vite
# yarn
$ yarn create vite vite-react-app --template react
$ cd vite-react-app && yarn
$ yarn dev
# pnpm
$ pnpm create vite vite-react-app --template react
$ cd vite-react-app && yarn
$ yarn dev
# npm 6.x
$ npm create vite@latest vite-react-app --template react
$ cd vite-react-app && yarn
$ yarn dev
# npm 7+, extra double-dash is needed:
$ npm create vite@latest vite-react-app -- --template react
$ cd vite-react-app && yarn
$ yarn dev
https://cn.vitejs.dev/guide/#scaffolding-your-first-vite-project#scaffolding-your-first-vite-project
refs
https://create-react-app.dev/docs/getting-started
https://reactjs.org/docs/create-a-new-react-app.html#create-react-app
©xgqfrms 2012-2020
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 ️,侵权必究⚠️!