NodeJS

[NodeJs/React/Error] The engine "node" is incompatible with this module. Expected version

Question영 2019. 12. 23. 11:08
반응형

React 프로젝트를 create-react-app 로 생성하려고 했을때 다음과 같은 오류가 발생했습니다.

 

 

 

 

error @typescript-eslint/eslint-plugin@2.10.0: The engine "node" is incompatible with this module. Expected version "^8.10.0 || ^10.13.0 || >=11.10.1". Got "11.6.0"

 

오류 메세지를 살펴보니 node 버전이 호환이 안되서 문제인 것 같아 업데이트를 진행 해줬습니다.

 

 

Node.js 업데이트 방법

 

[Node.js] 최신버전으로 업데이트 하기

Node 업데이트 $ sudo npm cache clean -f # 강제캐시삭제 $ sudo npm install -g n # n 모듈 설치 $ sudo n stable # or sudo n 12.14.0 (버전명) $ node -v # 버전 확인 Node 업데이트 오류 bash: /usr/bin/node..

question0.tistory.com

 

업데이트를 진행 후 다시 시도하면 정상적으로 프로젝트가 생성된 것을 확인할수 있었습니다.

 

 

참고하세요.

반응형