Skip to content

Instantly share code, notes, and snippets.

@isaacs
Created January 11, 2010 07:20
Show Gist options
  • Save isaacs/274055 to your computer and use it in GitHub Desktop.
Save isaacs/274055 to your computer and use it in GitHub Desktop.
chain
(myApp)
(route
(function (req) {
return req.header("accept").indexOf("application/json") !== -1
}, chain(renderAsJSON)())) // terminal, and end route
(render)
(as)
(template)
().listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment