项目文件夹名称是否另存为依赖项?

时间:2019-09-16 08:28:43

标签: reactjs

伙计们我正在测试某些东西,结果出现以下错误

$ npm i --save react-bootstrap
npm ERR! code ENOSELF
npm ERR! Refusing to install package with name "react-bootstrap" under a package
npm ERR! also called "react-bootstrap". Did you name your project the same
npm ERR! as the dependency you're installing?
npm ERR!
npm ERR! For more information, see:
npm ERR!     <https://docs.npmjs.com/cli/install#limitations-of-npms-install-algorithm>

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Anik\AppData\Roaming\npm-cache\_logs\2019-09-16T08_22_43_706Z-debug.log

这就是我试图做的。 我的项目文件夹名称为react-bootstrap, 我尝试安装

`npm i --save react-bootstrap`

是否有任何规定?预先感谢。

1 个答案:

答案 0 :(得分:2)

这就是我解决的方法。

此错误意味着您要作为依赖项尝试安装的Node模块实际上是您的项目名称!

要解决此问题,请打开您的package.json文件并更改项目名称。