我尝试使用 npx create-react-app 创建新的 React 应用程序,但它不起作用
I tried to create new react app with npx create-react-app but it's not working
`npx create-react-app` is not working I tried `npm uninstall -g create-react-app` and `npm cache clean --force` but it is still not working.
错误信息如下:
npm ERR! Unexpected end of JSON input while parsing near '..."optional":true}},"fu'
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Zee\AppData\Roaming\npm-cache\_logs21-10-13T16_22_36_156Z-debug.log
首先,您必须在 运行 命令时为应用程序命名:
npx create-react-app my-app
其次,如果错误仍然存在,则此类错误主要有两种可能性:
- 您的 npm 版本已过时。
- 您的互联网连接质量差或不稳定。
You’ll need to have Node >= 14.0.0 and npm >= 5.6 on your machine. To
create a project, run:
npx create-react-app my-app
cd my-app
npm start
- 要检查节点版本,请转到终端并键入命令
node -v
或 node --version
- 并检查 npm 版本,输入
npm -v
或 npm --version
有关更多详细信息,请查看官方文档:
`npx create-react-app` is not working I tried `npm uninstall -g create-react-app` and `npm cache clean --force` but it is still not working.
错误信息如下:
npm ERR! Unexpected end of JSON input while parsing near '..."optional":true}},"fu'
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Zee\AppData\Roaming\npm-cache\_logs21-10-13T16_22_36_156Z-debug.log
首先,您必须在 运行 命令时为应用程序命名:
npx create-react-app my-app
其次,如果错误仍然存在,则此类错误主要有两种可能性:
- 您的 npm 版本已过时。
- 您的互联网连接质量差或不稳定。
You’ll need to have Node >= 14.0.0 and npm >= 5.6 on your machine. To create a project, run:
npx create-react-app my-app
cd my-app
npm start
- 要检查节点版本,请转到终端并键入命令
node -v
或node --version
- 并检查 npm 版本,输入
npm -v
或npm --version
有关更多详细信息,请查看官方文档: