IT

[Laravel] npm 에러 (Error: Cannot find module 'are-we-there-yet')

집탱구리 2022. 4. 20. 18:29
반응형

홈스테드에서 npm run dev를 실행 하려는데 에러가 났다.

Error: Cannot find module 'are-we-there-yet'

해결 방법은 아래 순서대로 하니 해결되었다.

 

 

1) 전역 node_modules디렉토리로 이동합니다. (위치를 모른다면 npm root -g 명령어를 입력하면 나옵니다.)

cd /usr/local/lib/node_modules

 

2) 손상된 node_modules를 다른곳으로 이동하거나 삭제합니다.

mv npm /tmp

 

3) 레지스트리에서 최신 파일을 다운로드하고 압축을 풉니다. (설치하고자 하는 버전을 {VERSION} 부분에 넣습니다. )

curl -L registry.npmjs.com/npm/-/npm-{VERSION}.tgz | tar xz --transform="s:^package:npm:"

 

4) 이 설치 스크립트를 사용하여 일부를 자동화할 수 있습니다.

curl -L https://www.npmjs.com/install.sh | sh

 

마지막으로 프로젝트 경로로 가서 npm run dev를 실행하니 잘 실행되었다.

 

 

* 참고 URL *

https://localcoder.org/npm-doesnt-work-get-always-this-error-error-cannot-find-module-are-we-the

 

[Solved] npm doesn't work, get always this error -> Error: Cannot find module 'are-we-there-yet' - Local Coder

i tried to install grunt on a mac with Yosemite. node is already installed in the newest version. if i type 'node -v' in the terminal i get the line v0.12.5. thats good. but when i

localcoder.org

 

반응형