Johnhhorton
2/22/2017 - 4:24 AM

node-export-example-3.js

modules.export = class MyClass {
  constructor(){
    //do stuff
  }
}

//In importing file:
var MyClass = require('./moduleFile')
var myClass = new MyClass()