Skip to content

Instantly share code, notes, and snippets.

@fourcube
Created April 21, 2017 09:29
Show Gist options
  • Save fourcube/f4c2fa49373afb522944bce758c4348b to your computer and use it in GitHub Desktop.
Save fourcube/f4c2fa49373afb522944bce758c4348b to your computer and use it in GitHub Desktop.
nodejs-es6
module.exports = class Foo {
constructor() {
console.log('foo');
}
}
const Foo = require('./foo');
const foo = new Foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment