React安装一个新依赖以后npm start之后会出现下述错误,

‘react-app-rewired’ 不是内部或外部命令,也不是可运行的程序
或批处理文件。
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] start: react-app-rewired start
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users***\AppData\Roaming\npm-cache_logs\2019-06-19T11_03_26_120Z-debug.log

简单的上网查了一下,好像是说,React不和vue一样,他是一个是双向数据绑定,而vue是一个单向数据绑定,所以在安装某些依赖的时候可能会出现这个情况,所以在此直接去项目下输入命令npm install然后回车直接就可以解决这个问题,其实还是不太理解,为何其他依赖安装的时候不会报错呢?
如果有大佬看到,感谢帮忙解答

你可能感兴趣的:(react)