Nodejs的文件可以通过模块系统进行相互调用。文件和模块是一一对应的,引入一个模块就相当于引入一个js文件。在Nodejs中,除了可以引入js,还可以引入json文件。
引入模块
在 Nodejs 中,可以通过 require
关键词语法引入一个模块文件。
varmod=require('./module'); mod.run();
Nodejs 提供了exports
和 require
两个对象,其中exports
是模块公开的接口,require
用于从外部获取一个模块的接口,即所获取模块的exports
对象。
module文件的内容:
exports.run=function() { console.log('required.'); }