FrontEnd
This is probably not a problem with npm. There is likely additional logging output above. 에러 해결법
mingg123
2022. 10. 24. 10:37
npm install을 진행하려 했으나 에러가 발생했다.
해결법은 다음과 같다.
1. npm cache 지우기
npm cache clean -f
2. node_modules 폴더 지우기
rmdir /s node_modules (window 기준 명령어)
rm -rf node_modules (linux 기준 명령어.. 였던것 같다)
3. npm 설치하기
npm install
성공!