Skip to content

Instantly share code, notes, and snippets.

@nnance
Created September 16, 2014 22:16
Show Gist options
  • Save nnance/3133d1b05831b8e78005 to your computer and use it in GitHub Desktop.
Save nnance/3133d1b05831b8e78005 to your computer and use it in GitHub Desktop.
CommonJS: require() and exports
// package/lib is a dependency we require
var lib = require('package/lib');
// some behaviour for our module
function foo(){
lib.log('hello world!');
}
// export (expose) foo to other modules
exports.foo = foo;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment