[Node.js] code ENOSEL 에러 해결 방법




1
2
3
4
5
6
7
8
9
10
11
C:\Users\Documents\brackets\ExpressExample>npm install express --save
npm ERR! code ENOSELF
npm ERR! Refusing to install package with name "express" under a package
npm ERR! also called "express". 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\04banjang_03\AppData\Roaming\npm-cache\_logs\2017-07-11T10_24_05_499Z-debug.log
cs


위와 같은 에러는 pakage.json 에 들어가보면 쉽게 확인 할 수 있다. 





위와 같이 name 이 'express' 가 들어가 있으면 해당 오류가 발생 할 수 있다. 

express 대신 다른 이름을 사용해준다.