为什么我不能使用 npx create-react-app 命令?

Why can't I use the npx create-react-app command?

我的npm和npx版本是6.14.4,我的操作系统是Windows10。之前我可以使用这个命令。

Command line error message

如 create react app 文档所述:

Creating an App

You’ll need to have Node 8.16.0 or Node 10.16.0 or later version on your local development machine (but it’s not required on the server). You can use nvm (macOS/Linux) or nvm-windows to switch Node versions between different projects.

这是 link 的 official documentation.

所以您需要更新当前的nodejs版本。

尝试这个随时提供帮助

npm cache clean --force

npm install -g create-react-app

npx create-react-app "Name-Folder-App Must Be LowerCase"

或者如果你使用 yarn
yarn create react-app my-app

如果你对你的 npm 项目有任何问题,那么

npm i -f