在create-react-app中安装react项目时出现npm错误

时间:2019-12-26 08:59:05

标签: reactjs npm

您好,感谢您阅读本主题 我现在正在与React合作,尝试在安装React New App时学习ReactJS,并显示卸载错误React New Project 我有什么问题

Command Terminal

  

npm错误!解析附近时JSON输入意外结束   '... 9.1“,” tslint-config   -p'

     

npm错误!有关此运行的完整日志,请参见:npm ERR!
  C:\ Users \ john \ AppData \ Roaming \ npm-cache_logs \ 2019-12-26T01_36_25_1   39Z-debug.log npm install --save @testing-library/react@^9.3.2 @testing-library/jest-dom@^4.2 .4 @testing-library/user-event@^7.1.2   失败

2 个答案:

答案 0 :(得分:0)

我认为是版本问题。

如果您以前是通过create-react-app在全球安装npm install -g create-react-app的,建议您使用npm uninstall -g create-react-app卸载软件包,以确保npx始终使用最新版本

快速入门

npx create-react-app my-app
cd my-app
npm start

有关更多说明,请检查此reactjs

答案 1 :(得分:0)

我多次遇到相同的问题。 然后使用以下命令,对我有用

npm init
npm cache clean force
npx create-react-app my-app
cd my-app
npm start