您好,感谢您阅读本主题
我现在正在与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.lognpm install --save @testing-library/react@^9.3.2 @testing-library/jest-dom@^4.2 .4 @testing-library/user-event@^7.1.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