ReactNative10 npm ERR! Maximum call stack size exceeded npm ERR! Maximum call stack size exceeded 위와 같은 Maximun call stack size 에러를 만난다면 먼저 npm 캐시를 지워준다. npm cache clean --force 그 다음 npm을 재빌드 해준다. npm rebuild 그리고 프로젝트 디렉토리에 있는 노드 모듈을 한번 지워준다. rm -rf node_modules 마지막으로 프로젝트 디렉토리에서 다시 노드 모듈(node_module)을 설치해준다. npm install 2022. 7. 27. npm ERR! Error: EPERM: operation not permitted, rename npm ERR! Error: EPERM: operation not permitted, rename 위와 같은 에러를 만난다면 아래와 같은 절차를 거쳐 수정하면 된다. 1. clean cache with (npm 캐시를 한번 지워준다) npm cache clean --force 2. install the latest version of npm globally as admin: (npm을 글로벌로 최신버전으로 재 설치 해준다) npm install -g npm@latest --force 3. clean cache with (다시 한번 npm 캐시를 지워준다) npm cache clean --force 4. Try to install your component once again. (다시 패키지를 설치 해준다.. 2022. 7. 27. 이전 1 2 3 다음