Skip to content

Instantly share code, notes, and snippets.

/a.js

Created December 14, 2012 16:30
Show Gist options
  • Save anonymous/4286713 to your computer and use it in GitHub Desktop.
Save anonymous/4286713 to your computer and use it in GitHub Desktop.
Node.js require cache test
var b = require('./b')
,c = require('./c');
console.log(c.msg);
var c = require('./c');
c.msg = "I say B!";
exports.msg = "I am C.";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment