오류관리

[NPM] install Couldn't read dependencies

k9e4h 2016. 7. 21. 13:34




오류 상황


npm install 명령어에서 오류!


npm ERR! install Couldn't read dependencies

npm ERR! Windows_NT 10.0.10240

npm ERR! argv "C:\\~~\\~~\\node.exe" "C:\\~~\\~~\\node_modules\\npm\\bin\\npm-cli.js" "install"

npm ERR! node v4.4.7

npm ERR! npm  v2.15.8

npm ERR! path C:\~~\~~\package.json

npm ERR! code ENOPACKAGEJSON

npm ERR! errno -4058

npm ERR! syscall open


npm ERR! package.json ENOENT: no such file or directory, open 'C:\~~\~~\package.json'

npm ERR! package.json This is most likely not a problem with npm itself.

npm ERR! package.json npm can't find a package.json file in your current directory.


npm ERR! Please include the following file with any support request:

npm ERR!     C:\~~\npm-debug.log






오류 원인


오류 그대로 위치를 찾을 수 없었다!

package.json이 아니라 package.json.txt로 되어있어서.



폴더 설정이 확장자 숨기기로 되어있어서

package.json으로 파일명이 표기되있었다.

그래서 형식이 txt로 되어있다는 것을 인지하지 못함 ㅜㅜ




오류 해결


폴더 설정

보기 > 옵션 > 보기 > 알려진 파일 형식의 파일 확장명 숨기기

의 체크를 풀고  .txt  지우고 하니 완료!

반응형