Skip to content

Instantly share code, notes, and snippets.

@luggage66
Created April 19, 2015 21:43
Show Gist options
  • Save luggage66/f379ea1a9df64d7d2bbc to your computer and use it in GitHub Desktop.
Save luggage66/f379ea1a9df64d7d2bbc to your computer and use it in GitHub Desktop.
//config.js
module.exports = {
connectionString: 'postgres://blah blah blah',
port: 3000
}
// a class called "Product
function Product() {
this.name = null;
}
Product.prototype.getQuentityInStock = function() {
return 666;
}
module.exports = Product;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment