3

我是 Node.js 的新手,在我的 DigitalOcean VPS 上遇到了这个问题,我的 web 应用程序 (Ghost) 抱怨它即使在我安装后也找不到特定的模块:

root@3fen:/var/www/ghost# sudo npm install -g ghost-gql
ghost-gql@0.0.2 /usr/local/lib/node_modules/ghost-gql
└── lodash@3.10.1

root@3fen:/var/www/ghost# node index.js
ERROR: Ghost is unable to start due to missing dependencies:
  Cannot find module 'ghost-gql'
  Cannot find module 'jsonpath'

Please run `npm install --production` and try starting Ghost again.
Help and documentation can be found at http://support.ghost.org.

我确认这两个条目都存在于package.json的依赖项块中,并且我也尝试过npm install --production,它以静默方式执行,但仍然出现相同的错误。

如果我在上述步骤中遗漏任何内容,请指出我。谢谢!

4

1 回答 1

4

看起来全局 npm 路径未在环境变量 NODE_PATH 中设置。

这需要是与npm config get prefix连接的路径node_modules

在你的情况下

export NODE_PATH=/usr/local/node_modules
于 2015-11-09T07:23:51.007 回答