respire
v1.0.0
Published
Respire: Expressive, Succinct Promise Interfaces for Routing in Express
Downloads
3
Maintainers
Readme
Respire: Expressive, Succinct Promise Interfaces for Routing in Express
Express is often used to aggregate data from APIs and databases into views. Promises make control flow and error handling clearer. This express middleware adds some APIs to the request and response objects to simplify the typical fetch/render/respond use case.
Installation
npm install --save respire
Usage
The middleware adds some promise-friendly sugar to req and res.
var respire = require('respire');
app.use(respire);
A promise chain helps to organise the route function into steps.
app.get('/u/:username', function (req, res, next) {
req.process(getUserData) // Get some data asynchronously
.then(res.renderInto('pages/user')) // Render it into a template
.then(res.respond.withHTML) // Serve it up
.catch(next) // If something went wrong, explode
.done(); // Thank you Q, that will be all
});
req.process
req.process
simply wraps a function call using Q.fcall(fn, req, res)
.
res.renderInto
res.renderInto
uses res.render
under the hood, so templates work as they ever did.
The input to res.renderInto
is the usual map of template fields, except they can all be promises.
The map itself can be promised too, if needs be. So getUserData
might look like this:
function getUserData (req) {
var userDetails;
var username = req.params.username;
return {
username: username,
userDetails: userDetails = getUserByUsername(username),
userFollowing: userDetails.get('id').then(getUserFollowing),
userFeed: userDetails.get('id').then(getUserFeed)
};
}
The output of res.renderInto
is a RenderedContext
. Its .toString()
method returns the rendered template. It also exposes reasons for failed fields on .rejected
, and the original data on .data
. This is great for debugging, and can also be useful in templates when composing views.
res.respond
res.respond
provides withHTML
, withJSON
, withErrorPage
and withErrorJSON
.
Error handling
I/O can be unreliable. Some types of failure might not be recoverable. For example, if the userDetails
promise rejects, the user profile can't be rendered. To throw a tantrum if mandatory fields are missing, respire.demand
can be used. It's backed by object.demand
from the excellent q-combinators library by Beamly.
app.get('/u/:username', function (req, res, next) {
req.process(getUserData)
.then(respire.demand('userDetails', 'userFeed')) // Rejects if a demanded key rejected
.then(res.renderInto('pages/user'))
.then(res.respond.withHTML)
.catch(res.respond.withErrorPage) // Serve an error page
.done();
});
Problems of this nature usually call for an error page. res.respond.withErrorPage
will serve one.
- It expects
err.statusCode
to be an HTTP error code (e.g.401
) - It expects a template to exist for that code in
<views>/errors
(e.g.401.hbs
or, failing that,4xx.hbs
)
respire.middleware.errorPages
The error page middleware ensures that all types of unhandled error on all routes result in error pages being served. It also provides some options.
app.use(respire.middleware.errorPages({
debug: true, // Enable the debug feature
debugParam: 'debug', // The query parameter which enables debug output
errorDir: 'errors', // The location of the error templates
rethrowErrors: false // Enable this if there's more error middleware
}));
The ?debug
feature gives you access to a stack trace for the error. If the error represents multiple failed required fields, they will all be listed.
Composing views
It's common to render pages from multiple views. A template field can be a promise for another RenderedContext:
function getUserData (req, res) {
var userDetails;
var username = req.params.username;
return {
username: username,
userDetails: userDetails = getUserByUsername(username),
renderedFollowing: userDetails.get('id')
.then(getUserFollowing)
.then(res.renderInto('components/following')),
renderedFeed: userDetails.get('id')
.then(getUserFeed)
.then(res.renderInto('components/feed'))
};
}
It's also possible to render the output of one view straight into another:
app.get('/u/:username', function (req, res, next) {
req.process(getUserData)
.then(res.renderInto('pages/user'))
.then(res.renderInto('chrome/standard-page')) // Fields will be from the previous RenderedContext
.then(res.respond.withHTML)
.catch(next)
.done();
});
Here's chrome/standard-page.hbs
:
<html>
<head>
<title>{{this.data.userDetails.displayName}}</title>
</head>
<body>
{{{this}}}
</body>
</html>
Notice how (in handlebars, at least) accessing {{{this}}}
calls toString
on the RenderedContext, while the original data is still accessible on this.data
.
Future plans
Next up:-
- Shorthand for render + respond (as you expect from res.render)
- Debugging rendered pages (i.e to see which promises rejected and why)
- Grouping other logging activity by the pageView which triggered it
- A good pattern for setting headers, serving redirects, etc.