Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I cant seem to find any info on this but it appears to be a rather important part of NodeJS as I often see it in source code.

According to the node docs :

module

A reference to the current module. In particular module.exports is the same as the exports object. See src/node.js for more information.

But this doesn't really help.

Can anyone explain what exactly module.exports does, and maybe give a simple example?

share|improve this question

5 Answers

up vote 267 down vote accepted

module.exports is the object that's actually returned as the result of a require call.

The exports variable is initially set to that same object (i.e. it's a shorthand "alias"), so in the module code you would usually write something like this:

var myFunc1 = function() { ... };
var myFunc2 = function() { ... };
exports.myFunc1 = myFunc1;
exports.myFunc2 = myFunc2;

to export (or "expose") the internally scoped functions myFunc1 and myFunc2.

And in the calling code you would use:

var m = require('mymodule');
m.myFunc1();

where the last line shows how the result of require is (usually) just a plain object whose properties may be accessed.

NB: if you overwrite exports then it will no longer refer to module.exports. So if you wish to assign a new object (or a function reference) to exports then you should also assign that new object to module.exports


It's worth noting that the name added to the exports object does not have to be the same as the module's internally scoped name for the value that you're adding, so you could have:

var myVeryLongInternalName = function() { ... };
exports.shortName = myVeryLongInternalName;
// add other objects, functions, as required

followed by:

var m = require('mymodule');
m.shortName(); // invokes module.myVeryLongInternalName
share|improve this answer
1  
Thanks, makes it much easier to understand. – mrwooster Mar 15 '11 at 13:54
What if you have multiple functions in that module that you add to exports? Then how would you specify from require which function you want? – Apophenia Overload Apr 13 '11 at 16:22
you get all of them by default. ISTR there's a syntax for a limited import, but I can't find a spec for it. – Alnitak Apr 13 '11 at 16:32
2  
@ApopheniaOverload - you can do "exports.func1, exports.func2, etc" to have multiple exposed methods from one file. – dtan Aug 1 '12 at 4:50
2  
The module require should be var m = require('./mymodule');, with the dot and slash. This way Node.js knows we're using a local module. – Gui Premonsa Oct 22 '12 at 17:43
show 14 more comments

There is an explanation and examples regarding module.exports in Mastering node open source ebook under Creating Modules and Requiring Modules sections.

share|improve this answer
1  
Thanks for the link, great resource. – mrwooster Mar 15 '11 at 13:53

This has already been answered but I wanted to add some clarification...

You can use both exports and module.exports to import code into your application like this:

var mycode = require('./path/to/mycode');

The basic use case you'll see (e.g. in ExpressJS example code) is that you set properties on the exports object in a .js file that you then import using require()

So in a simple counting example, you could have:

(counter.js):

var count = 1;
exports.increment = function() { count++; };
exports.getCount = function() { return count; };

... then in your application (web.js, or really any other .js file):

var counting = require('./counter.js');
console.log(counting.getCount()); // 1
counting.increment();
console.log(counting.getCount()); // 2

In simple terms, you can think of required files as functions that return a single object, and you can add properties (strings, numbers, arrays, functions, anything) to the object that's returned by setting them on exports.

Sometimes you'll want the object returned from a require() call to be a function you can call, rather than just an object with properties. In that case you need to also set module.exports, like this:

(sayhello.js):

module.exports = exports = function() { console.log("Hello World!"); }

(app.js):

var sayHello = require('./sayhello.js');
sayHello(); // "Hello World!"

The difference between exports and module.exports is explained better in this answer here.

share|improve this answer
+1 for the link at end. :) – ajostergaard Jan 12 at 9:40
how can I call require some module from other folder which is not having the some root folder as mine ? – Igal Feb 20 at 8:32
@user301639 you can use relative paths to traverse the file system hierarchy. require starts relative to the folder you execute node app.js in. I recommend you post a new question with explicit code + folder structure examples to get a clearer answer. – Jed Watson Feb 20 at 12:35

Note that NodeJS module mechanism is based on CommonJS modules which are supported in many other implementations like RequireJS, but also SproutCore, CouchDB, Wakanda, OrientDB, ArangoDB, RingoJS, TeaJS, SilkJS, curl.js, or even Adobe Photoshop (via PSLib). The full list of known implementations is there: http://www.commonjs.org/impl/

Unless your module use node specific features or module, I highly encourage you then using exports instead of module.exports which is not part of the CommonJS standard, and then mostly not supported by other implementations.

Another NodeJS specific feature is when you assign a reference to a new object to exports instead of just adding properties and methods to it like in the last example provided by Jed Watson in this thread. I would personally discourage this practice as this breaks the circular reference support of the CommonJS modules mechanism. It is then not supported by all implementations and Jed example should then be written this way (or a similar one) to provide a more universal module:

(sayhello.js):

exports.run = function() { console.log("Hello World!"); }

(app.js):

var sayHello = require('./sayhello.js');
sayHello.run(); // "Hello World!"

PS: It looks like Appcelerator also implements CommonJS modules, but without the circular reference support (see: Appcelerator and CommonJS modules (caching and circular references))

share|improve this answer
+1 for comparing with the CommonJS standard – Sebastian Godelet Jan 24 at 11:22

Some few things you must take care if you assign a reference to a new object to exports and /or modules.exports:

1. All properties/methods previously attached to the original exports or module.exports are of course lost because the exported object will now reference another new one

This one is obvious, but if you add an exported method at the beginning of an existing module, be sure the native exported object is not referencing another object at the end

exports.method1 = function () {}; // exposed to the original exported object
exports.method2 = function () {}; // exposed to the original exported object

module.exports.method3 = function () {}; // exposed with method1 & method2

var otherAPI = {
    // some properties and/or methods
}

exports = otherAPI; // replace the original API (works also with module.exports)

2. In case one of exports or module.exports reference a new value, they don't reference to the same object any more

exports = function AConstructor() {}; // override the original exported object
exports.method2 = function () {}; // exposed to the new exported object

// method added to the original exports object which not exposed any more
module.exports.method3 = function () {}; 

3. Tricky consequence. If you change the reference to either exports and module.exports, hard to say which API is exposed (it looks like module.exports wins)

// override the original exported object
module.exports = function AConstructor() {};

// try to override the original exported object
// but module.exports will be exposed instead
exports = function AnotherConstructor() {}; 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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