Study/React
[Node.js] Cannot read property 'match' of undefined 에러 해결
Potato potage
2021. 5. 16. 18:01
반응형
프로젝트를 git에서 clone하고 npm install을 했더니
npm ERR! Cannot read property 'match' of undefined
npm ERR! A complete log of this run can be found in:
npm ERR! C:\파일 경로-debug.log'
이런 에러가 떠서 npm install, npm upgrade, npm install upgrade도 계속 같은 에러가 났다.
그래서 일단
1. package-lock.json 제거
2. node-modules 제거
3. npm install
실행했다.
나는 node-modules 만들기 전부터 에러가 생긴거여서 1번 -> 3번으로 실행했더니 install이 잘 됐다.
반응형