node.js exports module.exports

Posted 思此狂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node.js exports module.exports相关的知识,希望对你有一定的参考价值。

(make.js)
function
show(data){ console.log("WEILCOME" + data); } exports.show = show

获取

var show = require("./make").show;
show("jinkang");

输出   WELCOME jinkang

(make.js)
exports.show = function(data){ console.log("WEILCOME" + data); }
获取

var show = require("./make").show;
show("jinkang");

输出  WELCOME jinkang

 
(make.js)
module.exports = function(data){ console.log("WEILCOME" + data); }
获取

var show = require("./make");
show("jinkang");

输出 WELCOM jinkang

 













以上是关于node.js exports module.exports的主要内容,如果未能解决你的问题,请参考以下文章

Node.js中exports与module.exports的区别

Node.js中exports,module.exports以及require方法

Node.js学习笔记(一)module.exports与exports

Node.js module.exports和exports的区别

Node.js模块系统

Node.js模块导出exports 和 module.exports 的区别