Skip to content

Instantly share code, notes, and snippets.

@camshaft
Created April 18, 2013 21:39
Show Gist options
  • Save camshaft/5416448 to your computer and use it in GitHub Desktop.
Save camshaft/5416448 to your computer and use it in GitHub Desktop.
Simple cart usage
/**
* Module dependencies
*/
var cart = require("simple-cart");
/**
* Expose the app
*/
var app = module.exports = cart();
// Handle creating a cart
app.on("create", function() {
});
// Handle updating the cart
app.on("update", function() {
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment