【webpack】npm install --save-dev webpackのエラー(code ENOSELF npm ERR! Refusing to install package with name "webpack" under a package)
webpackのインストールでこの様なエラーが出た。
$ npm install --save-dev webpack
npm ERR! code ENOSELF
npm ERR! Refusing to install package with name "webpack" under a package
npm ERR! also called "webpack". 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! /Users/aocattleya/.npm/_logs/2019-11-17T07_06_30_436Z-debug.log
💬 原因
2、3行目
npm ERR! Refusing to install package with name "webpack" under a package
npm ERR! also called "webpack". Did you name your project the same
webpackのインストールの拒否、
プロジェクトに"webpack"と同じ名前を付けましたかと聞いている。
webpackの練習でフォルダ名に『webpack』と付けていたが、
プロジェクト名とパッケージ名が同じだとダメならしい。
恐らくwebpack以外でも起こる。
💫 解決
・フォルダ名のみを変えた場合
フォルダ名を『webpack』 → 『hello-webpack』
これだけでは同じエラーが発生します。
・package.json を修正する。
package.json
の"name":〇〇〇
が問題でここを変更します。
{
"name": "webpack",
}
これを変更します。
{
"name": "hello-webpack",
}
一致していなければ、webpackが含まれても問題ないみたい。
これでインストールが進みます。
GitHub
https://github.com/aocattleya
🐦 Twitter
https://twitter.com/aocattleya
Author And Source
この問題について(【webpack】npm install --save-dev webpackのエラー(code ENOSELF npm ERR! Refusing to install package with name "webpack" under a package)), 我々は、より多くの情報をここで見つけました https://qiita.com/aocattleya/items/2e93598a097173b26d4a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .