Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

To claim this, I am signing this object:

// app.js
app.configure(function(){
app.use(express.staticProvider(pub));
app.set('views', __dirname + '/views')
app.set('view engine', 'ejs')
app.use(connect.bodyDecoder())
app.use(express.errorHandler({ showStack: true, dumpExceptions: true }))
// app.helpers({
// name: function(first, last){ return first + ', ' + last },
// firstName: 'tj',