(2023.10.27)
평소같이 vue에서 npm run serve를 하는데 다음과 같은 에러가 뜨면서 시작이 안됨
npm ERR! path C:\JBWorkspace\vueLearn\package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open 'C:\JBWorkspace\vueLearn\package.json'
npm ERR! enoent This is related to npm not being able to find a file.
> 현재 경로는 C:\JBWorkspace\vueLearn\ 이거였는데 package.json은 하위 폴더인 C:\JBWorkspace\vueLearn\vue-news
에 있었다. 결론은 터미널에서 경로가 내 프로젝트보다 상위폴더로 잡혀있어서 cd로 경로 수정 후 돌리니 잘됐음.