Skip to content

Instantly share code, notes, and snippets.

@calvinmetcalf
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save calvinmetcalf/57be20b8eda0ee8fe6de to your computer and use it in GitHub Desktop.
Save calvinmetcalf/57be20b8eda0ee8fe6de to your computer and use it in GitHub Desktop.
exports.obj = {};
var b = require('./b');
exports.msg = 'yay';
b.something();
var a = require('./a');
a.obj.val = 'asdf';
exports.something = function() {
console.log(a.msg);
};
require('./a'); //prints yay
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment