如何解决这个错误 jest-worker@27.0.0-next.5:The engine "node" is in compatible with this module
Posted
技术标签:
【中文标题】如何解决这个错误 jest-worker@27.0.0-next.5:The engine "node" is in compatible with this module【英文标题】:how to solve this error jest-worker@27.0.0-next.5:The engine "node" is incompatible with this module 【发布时间】:2021-06-29 16:58:06 【问题描述】:linix@linix-HP-ProBook-6475b:~/projects/builds$ npx create-next-app hellochat
npx: installed 1 in 2.333s
Creating a new Next.js app in /home/linix/projects/builds/hellochat.
Installing react, react-dom, and next using yarn...
yarn add v1.22.10
info No lockfile found.
[1/4] Resolving packages...
[2/4] Fetching packages...
error jest-worker@27.0.0-next.5: The engine "node" is incompatible with this module. Expected version "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0". Got "14.5.0"
error Found incompatible module.
info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command.
Aborting installation.
yarnpkg add --exact react react-dom next --cwd /home/linix/projects/builds/hellochat has failed.
linix@linix-HP-ProBook-6475b:~/projects/builds$
【问题讨论】:
您是否尝试过更新到 Node.js14.15.x
?由于错误表明该模块与您正在使用的当前节点版本不兼容(14.5.0
)。
【参考方案1】:
你应该可以通过更新节点来解决问题。
对于 Windows:
只需从here 的 Windows 中的 .msi 重新安装节点。
适用于 Ubuntu 或 Linux/Mac:
安装模块 n 以简化版本管理:sudo npm install n -g
sudo n stable
sudo n latest
【讨论】:
【参考方案2】:在我的例子中,我在我的 Dockerfile 中偷偷输入了 apt update
,这让系统知道了更新。保持版本严格是最佳实践。例如使用'packageName': '1.0.0'
而不是'packageName':'latest'
我能够通过删除apk update
并将我的node:alpine
版本升级到node:alpine3.13
来解决。
【讨论】:
以上是关于如何解决这个错误 jest-worker@27.0.0-next.5:The engine "node" is in compatible with this module的主要内容,如果未能解决你的问题,请参考以下文章