Skip to content

Instantly share code, notes, and snippets.

@shorttompkins
Last active August 29, 2015 14:11
Show Gist options
  • Save shorttompkins/21b975c642dc7e871a24 to your computer and use it in GitHub Desktop.
Save shorttompkins/21b975c642dc7e871a24 to your computer and use it in GitHub Desktop.
// fileA.js:
var something = '12345';
module.exports = {
doWork: function() {
console.log('working!');
},
someVar: 'yo yo yo!',
something: something
}
// fileB.js:
var fileA = require('./fileA');
fileA.doWork();
console.log(fileA.someVar);
// run:
$ node fileB.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment