Skip to content

Instantly share code, notes, and snippets.

@kamleshchandnani
Last active December 5, 2017 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kamleshchandnani/2ce9ed44e9e03401718cc260883e690a to your computer and use it in GitHub Desktop.
Save kamleshchandnani/2ce9ed44e9e03401718cc260883e690a to your computer and use it in GitHub Desktop.
// File log.js
function log(){
console.log('Example of CJS module system');
}
// expose log to other modules
module.exports = { log }
// File index.js
var logModule = require('./log');
logModule.log();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment