node.js 的 exports 和 module.exports 的区别

commonjs

node.js 的模块系统就是按照模块化规范 commonjs 来实现的:

var math = require("math");

math.add(1, 2);

exports 和 module.exports

node.js 实现模块化最常用的函数就是 exports 和 module.exports。

exports 是指向 module.exports 的引用。它们初始化都是为{},require() 返回的是 module.exports,所以当改变了 module.exports 的值时,exports 的值就失效了[2]

用法一

// rocker.js

exports.hello = function() {
  console.log("hello world!");
};

// main.js

var r = require("./rocker.js");
r.hello();

用法二

// info.js

module.exports = function(name, age) {
  this.name = name;
  this.age = age;
  this.info = function() {
    console.log("姓名:" + name + ", 年龄:" + age + ".");
  };
};

// main.js

var i = require("./info.js");
var info = new i("imzhi", "26");
info.info();

//输出:姓名:imzhi, 年龄:26.

用法三

为了避免module.exports重定义之后影响exports的使用,一般会写成:

var useful_module = exports = module.exports = some....

这样再用 exports 赋值属性也没有问题了!

总结

一句话总结它们之间的区别[1]If you want the root of your module’s export to be a function (such as a constructor) or if you want to export a complete object in one assignment instead of building it one property at a time, assign it to module.exports instead of exports.

参考资料:

[1] 一句话说清exports和module.exports的区别

[2] exports 和 module.exports 的区别

[3] Node.js中exports与module.exports的区别

[4] exports vs module.exports

 

时间: 2024-10-25 20:30:15

node.js 的 exports 和 module.exports 的区别的相关文章

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

在Node.js中,使用module.exports.f = ...与使用exports.f = ...是一样的,此时exports就是module.exports的一种简写方式.但是,需要注意的是,如果直接给exports赋值的话,exports就与module.exports没有任何关联了,比如: exports = { hello: false }; // Not exported, only available in the module 此时,exports是没有导出任何变量的. 要弄

node.js中的exports和module.exports

不同的编程语言都有各自的代码组织和复用的方式,如.net.php中的命名空间,python中的import,ruby中的module等,来避免命名空间污染.一直都没搞清楚node中的exports和module.exports的区别,借此搞清楚node的代码模块复用方式. 首先怎么创建node中的modules. 可以直接创建一个文件作为module,如下module.js function writeLine(){ console.log("module.js"); } export

(译)Node.js的模块-exports和module.exports

原文标题:Node.js Module – exports vs module.exports原文链接:http://www.hacksparrow.com/node-js-exports-vs-module-exports.html exports 和 module.exports 有什么区别? 你一定很熟悉 Node.js 模块中的用来在你的模块中创建函数的 exports 对象,就像下面这样. 创建一个叫做rocker.js的文件: exports.name = function() {

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

原文:http://www.hacksparrow.com/node-js-exports-vs-module-exports.html 你肯定对Node.js模块中用来创建函数的exports对象很熟悉(假设一个名为rocker.js的文件): exports.name = function() { console.log('My name is Lemmy Kilmister'); }; 然后你在另一个文件中调用: var rocker = require('./rocker.js'); r

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

每一个node.js执行文件,都自动创建一个module对象,同时,module对象会创建一个叫exports的属性,初始化的值是 {} module.exports = {}; exports和module.exports指向同一块内存,但require()返回的是module.exports而不是exports. var str = "difference" exports.a = str; exports.b = function () { } 给 exports 赋值其实是给

node.js module初步理解,exports与module.exports的区别

在开发一个复杂的应用程序的时候,我们需要把各个功能拆分.封装到不同的文件,在需要的时候引用该文件.没人会写一个几万行代码的文件,这样在可读性.复用性和维护性上都很差,几乎所有的编程语言都有自己的模块组织方式,比如Java中的包.C#中的程序集等,node.js使用模块和包来组织,其机制实现参照了CommonJS标准,虽未完全遵守,但差距不大,使用起来非常简单. 在node.js中模块与文件是一一对应的,也就是说一个node.js文件就是一个模块,文件内容可能是我们封装好的一些JavaScript

node.js模块中exports和module.exports的区别

Node应用由模块组成,采用CommonJS模块规范. 根据这个规范,每个文件就是一个模块,有自己的作用域.在一个文件里面定义的变量.函数.类,都是私有的,对其他文件不可见. CommonJS规范规定,每个模块内部,module变量代表当前模块.这个变量是一个对象,它的exports属性(即module.exports)是对外的接口.加载某个模块,其实是加载该模块的module.exports属性. var x = 5; var addX = function (value) { return

Node.js学习之(第二章:exports和module.exports)

前言 Node中,每个模块都有一个exports接口对象,我们需要把公共的方法或者字符串挂载在这个接口对象中,其他的模块才可以使用. Node.js中只有模块作用域,默认两个模块之间的变量,方法互不冲突,互不影响,这样就导致一个问题,我们怎样使用加载进来的模块中的方法呢?这就需要在另外一个模块exports接口对象中挂载模块中公共的方法. exports 我们在a.js中有以下代码: let foo = 'hello' function add (x, y) { return x+y } exp

node exports和module.exports区别

我们只需知道三点即可知道 exports 和 module.exports 的区别了: exports 是指向的 module.exports 的引用 module.exports 初始值为一个空对象 {},所以 exports 初始值也是 {} require() 返回的是 module.exports 而不是 exports 所以: 我们通过 var name ='nswbmw'; exports.name = name; exports.sayName =function(){ conso