当前位置 : 主页 > 网页制作 > Nodejs >

node.js – NodeJS需要另一个模块内的模块

来源:互联网 收集:自由互联 发布时间:2021-06-16
如何要求另一个模块的依赖模块?例如: Project/foo.jsProject/nodule_modules/MyModule/node_modules/AnotherModule //dependencie of MyModule 如何从foo.js文件中获取“AnotherModule”? 在foo.js模块中使用: var t
如何要求另一个模块的依赖模块?例如:

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

如何从foo.js文件中获取“AnotherModule”?

在foo.js模块中使用:

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

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

网友评论