title

Dotorimook's blog

Hello, World! This is Dotorimook's blog

    interest
  • HCI
  • UI/UX
  • Frontend
  • javascript
  • node

Categories

Tags

[짧은 팁] The engine "node" is incompatible with this module.

October 10, 2022

The engine “node” is incompatible with this module.

오랜만에 create-next-app 할 일이 있었는데, 갑자기 에러를 마주하게 되었다.

error create-strapi-app@3.5.1: The engine “node” is incompatible with this module. Expected version ”>=10.16.0 <=14.x.x”. Got “16.10.0” error Found incompatible module.

갑자기 당황 ㅋㅋ 일반적으로 The engine “node” is incompatible with this module. 에러를 만나면 node 버전 문제이고, 맞춘 버전으로 업그레이드를 해주면 되는 일인데, 약간 의아했다. 🧐 create-next-app을 쓰려고 했었는데 create-strapi-app의 버전 때문에 에러가 난 것.

찾아보니 yarn create 시에 global 하게 dependency 체크를 하게 되는데 그 때 에러가 난 것으로 보인다.

yarn globalcreate-strapi-app을 제거해주면 된다:

yarn global remove create-strapi-app

잘 설치되는 것을 확인할 수 있다 😂

Reference

https://github.com/vercel/next.js/discussions/31307#discussioncomment-1626333