exports和module.exports都用来导出代码。两者使用存在区别。
module.exports 初始值为一个空对象 {}
exports 是指向的 module.exports 的引用
require() 返回的是 module.exports 而不是 exports
exports和module.exports都用来导出代码。两者使用存在区别。
module.exports 初始值为一个空对象 {}
exports 是指向的 module.exports 的引用
require() 返回的是 module.exports 而不是 exports