我想使用我在/ 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
答案 0 :(得分:0)
尝试**npm install speech --save**
或**npm install -g speech**