Created
April 25, 2013 18:48
-
-
Save scottcorgan/5462104 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 definition | |
module.exports = function () { | |
console.log('in my module'); | |
}; | |
///////////////////////////////////////////////////////////////// | |
// Somewhere else in your codebase | |
var YourModule = require('./../../directory/to/module'); | |
YourModule() // <~~ outputs "in my module" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment