Hacker News new | ask | show | jobs
by MatthewPhillips 5222 days ago
I would create a DocumentRequest object that takes your req and res, then break apart your callbacks to separate functions on the DocumentRequest prototype. Then you would simply consume it with:

  app.get('/documents', new DocumentRequest);
1 comments

Thanks for this. Been thinking about this. Could you recommend a book on patterns like these?