I've found the following contract in a node module:

module.exports = exports = nano = function database_module(cfg) {...}

I wonder whats the different between module.export and export and why both are used here.

link|improve this question

69% accept rate
feedback

3 Answers

up vote 16 down vote accepted

There are two main reasons.

1st reason

Setting module.exports allows the database_module function to be called like a function when required. Simply setting exports wouldn't allow the function to be exported. The following code wouldn't allow the user to call the function.


The following won't work.

module.js

exports = nano = function database_module(cfg) {...}

server.js

var func = require('./module.js');
// the following line will fail
func();

The following will work with module.exports set.

module.js

exports = module.exports = nano = function database_module(cfg) {...}

server.js

var func = require('./module.js');
// the following line will **work**
func();

Basically nodes.js doesn't export the object that exports currently references, but exports the properties of what exports originally references. Although Node.js does export the object module.exports references, allowing you to call it like a function.

2nd reason

They set both module.exports and exports to insure exports isn't referencing the prior exported object.

By setting both you use exports as a shorthand and it avoids potentially bugs latter.

This:

exports.prop = true

instead of:

module.exports.prop = true

It is to save characters and avoid confusion.

link|improve this answer
feedback

This question has already been answered well, but would like to supplement the info with this resource: http://www.hacksparrow.com/node-js-exports-vs-module-exports.html

link|improve this answer
feedback

There is no difference according to the documentation:

In particular module.exports is the same as the exports object.

It seems like that at first, only exports existed and module.exports was not available, in version 0.1.14 __module was added and later on module (looking at the docs).

link|improve this answer
3  
I'm still seeing some unexpected behaviour. For example if I have: 'exports = function() {}();' and I try to reference this by using requires, I find that the object referenced by exports is different to that referenced by module.exports. When I do: 'module.exports = function() {}();' I get the expected object. However, if I do something like: 'exports.add = function() {};' I seem to get the object I expect when I use requires. Still trying to figure this out, am I missing something? – stantona Nov 2 '11 at 15:03
2  
@stantona My answer below gives a more in depth explanation. In a nutshell: Nodes.js doesn't export the object that exports references at the end of the program, but what exports references at the beginning. Node.js does export the object module.exports references at the end, allowing you to call it like a function when required. – Lime Dec 25 '11 at 18:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.