새끼 개발자의 Life is egg

npm ERR! Cannot read properties of undefined (reading 'stdin') 본문

개발's egg

npm ERR! Cannot read properties of undefined (reading 'stdin')

현z 2023. 11. 17. 10:41

윈도우 업데이트 후 갑자기 모든 리액트 어플들이 일을 못함

 

혹시나 해서 새로 cra 해봤는데도 계속 같은 에러가 떴다 호옹이...

 

일단 여기저기서 해보라는대로 해봄

 

1.

npm cache, package-lock.json, node_modules 를 지우고 다시 npm install

=> 안됨

 

$ npm cache clear --force // 했는데 force 막힘
$ npm cache verify // 그래서 이걸로...
package-lock.json 삭제
node_modules 삭제
$ npm install

npm ERR! code ERR_INVALID_ARG_TYPE
npm ERR! The "file" argument must be of type string. Received undefined

 

 

2.

어떤 라이브러리가 문제인지 알아내서 버전 변경하기 > 지금 사용중인게 최신버전

=> 안됨

 

3.

node 버전 변경 > 현재 사용중인 노드 버전이 18이라, 현재 LTS 인 20으로 변경

=> 안됨

 

4.

node 버전 다운 > 16으로 변경

=> 됨............ 그러나 노드를 다운그레이드 하고 싶지는 않았다.

 

5.

윈도우 업데이트 후에 뭔가 꼬인게 틀림없다... 이건 재부팅하면 해결될것이다... 라고 세뇌 후 재부팅

=> 안됨

 

6. Windows PowerShell 로 npm start 시도

=> 됨

!!?

 

 

 

이제 뭐가 문제인지 파헤쳐볼 시간이다 그지 깽깽이들아

Comments