Created
March 31, 2012 12:29
-
-
Save korneil/2263414 to your computer and use it in GitHub Desktop.
nodejs's global
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// index.js | |
require("./m.js").init(); | |
console.log(global.hi); | |
// m.js | |
exports.init=function(){ | |
global.hi="hi"; | |
}; | |
/* | |
On OSX it logs "hi", on ubuntu it logs undefined | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment