Skip to content

Instantly share code, notes, and snippets.

@scottcorgan
Created April 25, 2013 18:48
Show Gist options
  • Save scottcorgan/5462104 to your computer and use it in GitHub Desktop.
Save scottcorgan/5462104 to your computer and use it in GitHub Desktop.
// 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