Computer Science/Errors
[Errors] npm ERR! A complete log of this run can be found in:
Henry Cho
2024. 9. 30. 04:52
# package.json
npm을 설치하려는 과정에서 발생하는 에러로써 "npm install"을 하고 나서 아래와 같은 에러가 출력된다면 package file이 없어서 발생한 문제일 가능성이 있다.
"npm ERR! A complete log of this run can be found in:" 에러는 아래의 다른 에러들과 함께 출력되어 나온다.
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path <path>
npm ERR! errno -2
npm ERR! enoent ENOENT: no such file or directory, open <path>
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
위와 같은 에러가 발생하는 이뉴는 npm을 설치하려는 경로에 package.json 파일이 없기 때문에 필요한 파일을 만들어주면 문제를 해결할 수 있다.
npm init -y
728x90