Skip to content

Instantly share code, notes, and snippets.

@calvinmetcalf
Last active August 29, 2015 14:03
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