我是 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
,它以静默方式执行,但仍然出现相同的错误。
如果我在上述步骤中遗漏任何内容,请指出我。谢谢!