Skip to content

Instantly share code, notes, and snippets.

@Version2beta
Created October 15, 2012 22:05
Show Gist options
  • Save Version2beta/3895882 to your computer and use it in GitHub Desktop.
Save Version2beta/3895882 to your computer and use it in GitHub Desktop.
A non-functional Tako route.
app.route('/')
.html(function (req, resp) {
db.get('home', function(err, body) {
if (err) return resp.error(err)
console.log(templates.home(body));
})
.pipe(templates.home())
.pipe(resp);
})
.methods('GET')
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment