본문 바로가기

SCRIPT/NODE JS

[NodeJS] Error: EPERM: operation not permitted, ...

[NodeJS] Error: EPERM: operation not permitted, ...

 

npm install 로 모듈 최신화 및 인스톨을할때 발생할 수 있는 에러이다.

 

해당 에러는 파일이 읽기전용이되거나, 잠긴 현상으로 인한 문제로.

 

--force 옵션을 이용해 해당 문제를 해결 할 수 있다.

npm install --force 

 

 

 

 

 

https://stackoverflow.com/questions/39293636/npm-err-error-eperm-operation-not-permitted-rename

 

npm ERR! Error: EPERM: operation not permitted, rename

When I execute npm install I get this error npm ERR! Error: EPERM: operation not permitted, rename C:\projects******\node_modules\react-async-script' -> 'C:\projects*******\node_modules.react-a...

stackoverflow.com