无法加载我手动放入/ node_modules /目录的模块

时间:2016-09-09 09:27:29

标签: javascript node.js npm node-webkit google-speech-api

我想使用我在/ node_modules /手动放入的模块,我只需使用NWJS 0.16.0复制/粘贴文件并使用npm安装依赖项。

当我在app.js(或其他任何地方)输入var speech = require('speech')时,我收到以下错误 - Uncaught Error: Cannot find module 'speech'

我尝试了var speech = require('/node_modules/speech')var speech = require('./node_modules/speech')甚至是完整路径C:\\...\\project\\node_modules\\speech,结果相同。

如果有人知道我可能做错了什么,我会很感激你的意见。

npm install -g ./speech没有结果

注意:这是Google Cloud Speech API

1 个答案:

答案 0 :(得分:0)

尝试**npm install speech --save****npm install -g speech**