5

我如何要求一个模块是另一个模块的依赖项?例如:

Project/foo.js
Project/nodule_modules/MyModule/node_modules/AnotherModule //dependencie of MyModule

如何从 foo.js 文件中要求“AnotherModule”?

4

1 回答 1

3

foo.js模块中使用:

var that = require('./node_modules/MyModule/node_modules/AnotherModule');

http://nodejs.org/api/modules.html#modules_file_modules

于 2012-11-19T08:11:54.783 回答