如何通过require / npm正确地要求库?

时间:2016-04-04 14:30:49

标签: node.js npm

我试图在我的项目中加入下划线。

npm install --save underscore

我看到我的package.json已正确更新。并且库已下载并放在我的/ node_modules目录中。

然后在我的文件夹中,我尝试运行:

var _ = require("underscore")

但是这会回来:

react.js:1 Uncaught Error: Cannot find module 'underscore'(…)

通过npm将新库关联到应用程序的正确方法是什么?

0 个答案:

没有答案