Skip to content

Instantly share code, notes, and snippets.

@shri3k
Created August 16, 2014 16:30
Show Gist options
  • Save shri3k/7ac40170e5d2606b4180 to your computer and use it in GitHub Desktop.
Save shri3k/7ac40170e5d2606b4180 to your computer and use it in GitHub Desktop.
Node-globals
var someVal = "I'm just random value";
global.someVal = someVal;
var getGlobal = require('./globalMe');
console.log(getGlobal.someVal);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment