js的exports
//写法1exports.hello = function(){ console.log(‘world’);}//写法2var f = { hello : function(){ console.log(‘world’); }}module.exports = f;假设我们写的这个模块的文件名为hello.js,执行下面的代码var h = require(‘hel...