Skip to content

Instantly share code, notes, and snippets.

@TheSavior

TheSavior/db.js Secret

Last active August 29, 2015 14:22
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 TheSavior/a79e2379d196a6262c22 to your computer and use it in GitHub Desktop.
Save TheSavior/a79e2379d196a6262c22 to your computer and use it in GitHub Desktop.
CommonJS Singletons Db
function Db() {
}
Db.prototype = {
connect: function(dsn) {
},
query: function(obj) {
}
}
// There will only ever be one instance of the database class
module.exports = new Db();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment