Skip to content

Instantly share code, notes, and snippets.

@korneil
Created March 31, 2012 12:29
Show Gist options
  • Save korneil/2263414 to your computer and use it in GitHub Desktop.
Save korneil/2263414 to your computer and use it in GitHub Desktop.
nodejs's global
// 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