nodejs 导入导出 - VicSh/my-web-log GitHub Wiki

导出

nodejs中导出方式有两种,module.exports和exports,二者都是导出一个对象,一般情况下,前者用于导出一个单一的模块,后者用于导出多个模块,例如:

module.exports

module.exports = function() {
  console.log('Hello world!')
}

或者

module.exports = {
  hello: function () {
    console.log('Hello world!')
  }
}

exports

exports.hello = function () {
  console.log('Hello world!')
}