📑 오류기록

npm start / yarn start가 안될 때. 오류코드 : error Command failed with exit code 1.

Po_tta_tt0 2022. 3. 7. 15:26
반응형

문제

npm start와 yarn start 어느 것을 써도 error가 뜨면서 실행되지 않았다.

 

열심히 구글링 해 본 결과

npm update를 하고 

npm(yarn) start를 하니 작동되었다.

 

🙇‍♀️
https://rrecoder.tistory.com/133

 

 

 

 

 

 

 

나는 npm update로 문제를 해결했지만

종속성 문제 때문에 이런 에러코드가 발생했을 경우에는

종속성을 제거하고 캐시를 정리한 후 다시 전송받아야 할 것이다.

 

 

 

방법

 

rm -rf node_modules
yarn cache clean
yarn
yarn start
 
 
디렉토리의 노드 모듈을 제거한 다음에
yarn 캐시를 clean하게 만들어주고
yarn을 다시 시작한다
 
 
 
 
🙇‍♀️

 

반응형