【webpack】npm install --save-dev webpack 오류(code ENOSELF npm ERR! Refusing to install package with name "webpack"under a package)

2375 단어 webpackpackage.json
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":〇〇〇 문제로 여기를 변경합니다.

package.json
{
  "name": "webpack",
}

이것을 변경합니다.

package.json
{
  "name": "hello-webpack",
}

일치하지 않으면 webpack이 포함되어도 문제없는 것 같습니다.
이제 설치가 진행됩니다.
 
 
 
GitHub
htps : // 기주 b. 코 m / 아오카 t ぇ
🐦 Twitter
htps : // 라고 해서 r. 코 m / 아오카 t ぇ

좋은 웹페이지 즐겨찾기