Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to Javascript and am seeing a lot of usage of exports and prototype in the code that I read. What are they mainly used for and how do they work?

//from express
var Server = exports = module.exports = function HTTPSServer(options, middleware){
  connect.HTTPSServer.call(this, options, []);
  this.init(middleware);
};

Server.prototype.__proto__ = connect.HTTPSServer.prototype;
share|improve this question

3 Answers

This video explains node.js module.exports and here is a resource which describes JavaScript prototype.

share|improve this answer
Thanks! That video was extremely helpful as well as the link. – Kiran Ryali Mar 24 '11 at 19:39

For a simple answer:

Exports is used to make parts of your module available to scripts outside the module. So when someone uses require like below in another script:

   var sys = require("sys");  

They can access any functions or properties you put in module.exports

The easiest way to understand prototype in your example is that Server is a class that inherits all of the methods of HTTPSServer. prototype is one way to achieve class inheritance in javascript.

share|improve this answer
5  
but note that export, and modules in general, is not plain javascript, but an "extention" of node.js – Yannick Loiseau Mar 21 '11 at 16:06
extension #grammarNazi – user1354017 Apr 19 at 18:44

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.