升级 npm 和 nodejs 后,create-react-app 无法正常工作
create-react-app not working not after upgrading npm and nodejs
我将 npm 和 nodejs 分别升级到了 6.14.4 和 12.16.3。使用 create-react-app
.
创建 React 应用程序时出现以下错误
根据readme:
If you've previously installed create-react-app globally via npm
install -g create-react-app
, we recommend you uninstall the package
using npm uninstall -g create-react-app
to ensure that npx always uses
the latest version.
所以使用命令解决了问题:
npx create-react-app contactmanager
我将 npm 和 nodejs 分别升级到了 6.14.4 和 12.16.3。使用 create-react-app
.
根据readme:
If you've previously installed create-react-app globally via
npm install -g create-react-app
, we recommend you uninstall the package usingnpm uninstall -g create-react-app
to ensure that npx always uses the latest version.
所以使用命令解决了问题:
npx create-react-app contactmanager