Skip to content

Instantly share code, notes, and snippets.

@karlseguin
Last active August 29, 2015 14:19
Show Gist options
  • Save karlseguin/c264863573a6bfbf7605 to your computer and use it in GitHub Desktop.
Save karlseguin/c264863573a6bfbf7605 to your computer and use it in GitHub Desktop.
loadArticle (res, req) ->
article = yield findArticlebyId(...)
return res.notFound() unless artilce?
res.ok(article)
findArticleById (id) ->
conn = yield conn.Open().
row = yield conn.QueryAsync("....", id)
new Article(row)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment