启动程序时,我得到:
Error: Plugin routes-api-cruises missing dependency @hapi/nes
at new module.exports (/usr/src/app/node_modules/@hapi/hoek/lib/error.js:23:19)
at Object.module.exports [as assert] (/usr/src/app/node_modules/@hapi/hoek/lib/assert.js:20:11)
at module.exports.internals.Core._validateDeps (/usr/src/app/node_modules/@hapi/hapi/lib/core.js:348:22)
at module.exports.internals.Core._initialize (/usr/src/app/node_modules/@hapi/hapi/lib/core.js:320:14)
at module.exports.internals.Core._start (/usr/src/app/node_modules/@hapi/hapi/lib/core.js:240:24)
at internals.Server.start (/usr/src/app/node_modules/@hapi/hapi/lib/server.js:523:27)
at startServer (/usr/src/app/server.js:12:21)
at processTicksAndRejections (internal/process/task_queues.js:85:5)
我不知道“插件 x 缺少依赖项 y ”是否意味着插件无法声明其使用的依赖项,或者是否声明的依赖项未安装。
插件似乎声明了它的依赖性:
exports.plugin = {
name: 'routes-api-cruises',
dependencies: ['hapi-mongodb', '@hapi/nes'], // <- there it is
...
}
看起来也已经安装了软件包:
$ find node_modules -iname 'nes'
node_modules/@hapi/nes
package.json
包括:
"dependencies": {
"@hapi/nes": "^11.2.1",
...
}
package-lock.json
包括:
@hapi/nes": {
"version": "11.2.2",
"resolved": "https://registry.npmjs.org/@hapi/nes/-/nes-11.2.2.tgz",
"integrity": "sha512-XGFfTQsBB7NnpIgVdnz36lrZjJlUgni0tLmcN4TWiYdCGxNr6+YRreQ6jdsGN3j8qfZ8yLBY0FsGkHBiMPKLAw==",
...
}
代码使用@hapi/glue
的{{1}}函数,并传递一系列插件进行注册,并且compose()
存在。
答案 0 :(得分:0)
我在Hapi源代码中找到了source of that error,并使用节点检查器在其中附加了一个断点。
函数_validateDeps
枚举每个插件声明的依赖项。它们在插件注册图this.registrations
中查找。
在this.registrations
中,@hapi/nes
显示为简单的nes
。将插件依赖项声明更改为简单的nes
即可进行查找。