如何要求模块作为另一个模块的依赖项?例如:
Project/foo.js
Project/nodule_modules/MyModule/node_modules/AnotherModule //dependencie of MyModule
如何从foo.js文件中获取“另一个模块”?
答案 0 :(得分:3)
在foo.js
模块中使用:
var that = require('./node_modules/MyModule/node_modules/AnotherModule');