module

2020/10/23

commonjs

exports变量

每个 module 包含下面变量 exports

var exports = module.exports;

下面是无效的

exports.hello = function() {
  return 'hello';
};

module.exports = 'Hello world';