0

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

当我输入var speech = require('speech')我的 app.js(或其他任何地方)时,我收到以下错误 - 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

4

1 回答 1

0

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

于 2016-09-09T13:01:38.260 回答