-
-
Save edwardhotchkiss/2785519 to your computer and use it in GitHub Desktop.
5 Ways to export the same Node.js module
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dude = require('./dude'); | |
dude.say('hey bro.'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dude = module.exports = function(){}; | |
dude.say = function(message) { | |
console.log(message); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dude = module.exports = { | |
say : function(message) { | |
console.log(message); | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.say = function(message) { | |
console.log(message); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = Object.create({ | |
say : function(message) { | |
console.log(message); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(params) { | |
return { | |
say : function(message) { | |
console.log(message); | |
} | |
} | |
} | |
var dude = new require('./dude')(/* params? */); | |
dude.say('hey bro.'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment