npm 无法找到模块“E:\husky\lib\bin.js”

5kgi1eie  于 2023-02-13  发布在  其他
关注(0)|答案(1)|浏览(264)

我正在使用jhipster在windows上引导一个Springboot后端。我遇到了下面关于git钩子的Husky的错误。

> eims-back@0.0.0 prepare
> husky install

The system cannot find the path specified.
node:internal/modules/cjs/loader:1042
throw err;
^

Error: Cannot find module 'E:\husky\lib\bin.js'
   at Module._resolveFilename (node:internal/modules/cjs/loader:1039:15)
   at Module._load (node:internal/modules/cjs/loader:885:27)
   at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)
   at node:internal/main/run_main_module:23:47 {
 code: 'MODULE_NOT_FOUND',
 requireStack: []
}

Node.js v18.13.0
npm ERR! code 1
npm ERR! path E:\Software & Tutorials\Project source\EIMS_BE

我该怎么解决这个问题?
我已经在网上搜索了那个错误,但它似乎是新的。

jqjz2hbq

jqjz2hbq1#

检查这是否与nodejs issue 3709类似,其中包括一些可能的解决方案。
如果如注解所示,这是一个NodeJS版本,如seen here,请遵循downgrade process
JHipster应该支持节点〉=16.0.0,但18.x可能太高级了。

相关问题