오랜만에 react-native를 활용해서 앱을 만들어볼까 생각을 해서,
node를 새롭게 설치한 후, npm install 명령어를 날리는 순간 다음과 같은 에러가 발생하였다.
"npmERR! cb.apply is not a function"
$ npm install
npm WARN npm npm does not support Node.js v14.15.4
npm WARN npm You should probably upgrade to a newer version of node as we
npm WARN npm can't make any promises that npm will work with this version.
npm WARN npm Supported releases of Node.js are the latest release of 6, 8, 9, 10, 11, 12.
npm WARN npm You can find the latest version at https://nodejs.org/
npm ERR! cb.apply is not a function
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\minkyu\AppData\Roaming\npm-cache\_logs\2021-01-21T14_36_29_321Z-debug.log
위 에러는 다음과 같은 방법으로 해결할 수 있다.
STEP1) 위 에러 메시지에서 나온 C:\Users\minkyu\AppData\Roaming 디렉토리로 이동 후 npm 디렉토리와 npm-cache 디렉토리를 삭제해준다.
STEP2) npm cache clean --force 명령어로 cache를 삭제해준다.
참고
github.com/nodejs/help/issues/2874
'IT > 기타' 카테고리의 다른 글
Oracle SQL 특정 문자 기준으로 문자열 분리하기(행으로 분리) (0) | 2021.05.26 |
---|---|
[에러 해결]제니퍼가 설정된 WAS(Tomcat)에 배포된 어플리케이션의 인코딩이 깨지는 문제 (0) | 2021.02.05 |
Oracle 테이블 컬럼 정보 조회 쿼리(컬럼명, PK, FK, Nullable) (1) | 2020.11.20 |
Redmine 4.1에 플러그인 설치하기 (0) | 2020.07.21 |
Redmine에 테마 적용하기 (0) | 2020.07.21 |
댓글