Skip to content

Instantly share code, notes, and snippets.

@casprwang
Created May 29, 2017 22:01
Show Gist options
  • Save casprwang/d9e693a9e5cf3221a8ce5d9f1c7a89be to your computer and use it in GitHub Desktop.
Save casprwang/d9e693a9e5cf3221a8ce5d9f1c7a89be to your computer and use it in GitHub Desktop.
node.exports
// exports.module
// hello.js
exports.log = () => { console.log('logging') }
// index.js
import log from './hello.js'
log.log()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment