Skip to content

Instantly share code, notes, and snippets.

@kohendrix
Created May 21, 2019 02:17
Show Gist options
  • Save kohendrix/bc3bf24b91102f99974b657c2139f403 to your computer and use it in GitHub Desktop.
Save kohendrix/bc3bf24b91102f99974b657c2139f403 to your computer and use it in GitHub Desktop.
require when needed expample
function get() {
// check the db or something
const User = require('./user');
return new User('John', 'johndoe@somemail.com');
}
exports.getUser = get;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment