What is express-promise-router?
express-promise-router is an npm package that provides a drop-in replacement for Express's Router, adding support for handling promises. This allows you to write route handlers that return promises and automatically handle errors, making your code cleaner and more readable.
What are express-promise-router's main functionalities?
Promise-based Route Handling
This feature allows you to define routes that return promises. The router will automatically catch any errors and pass them to the next middleware.
const express = require('express');
const router = require('express-promise-router')();
router.get('/example', async (req, res) => {
const data = await someAsyncFunction();
res.json(data);
});
const app = express();
app.use(router);
app.listen(3000, () => console.log('Server running on port 3000'));
Error Handling
This feature demonstrates how express-promise-router handles errors thrown in async route handlers. The error is automatically caught and passed to the error-handling middleware.
const express = require('express');
const router = require('express-promise-router')();
router.get('/error', async (req, res) => {
throw new Error('Something went wrong');
});
const app = express();
app.use(router);
app.use((err, req, res, next) => {
res.status(500).json({ error: err.message });
});
app.listen(3000, () => console.log('Server running on port 3000'));
Middleware Support
This feature shows how you can use async middleware with express-promise-router. The middleware can perform asynchronous operations and call next() to proceed to the next middleware or route handler.
const express = require('express');
const router = require('express-promise-router')();
const asyncMiddleware = async (req, res, next) => {
await someAsyncFunction();
next();
};
router.use(asyncMiddleware);
router.get('/middleware', (req, res) => {
res.send('Middleware executed');
});
const app = express();
app.use(router);
app.listen(3000, () => console.log('Server running on port 3000'));
Other packages similar to express-promise-router
express-async-handler
express-async-handler is a middleware for handling exceptions inside of async express routes and passing them to your express error handlers. Unlike express-promise-router, it is not a router replacement but a middleware that you wrap around your async route handlers.
async-express-router
async-express-router is another package that provides a router with built-in support for async route handlers. It is similar to express-promise-router but offers additional features like route grouping and middleware chaining.
express-async-router
express-async-router is a lightweight alternative to express-promise-router that also supports async route handlers. It focuses on simplicity and minimalism, providing a straightforward way to handle promises in Express routes.
express-promise-router
The best module ever.
Getting Started
Install the module with: npm install express-promise-router
var PromiseRouter = require('express-promise-router');
Documentation
(Coming soon)
Examples
(Coming soon)
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Release History
(Nothing yet)
License
Copyright (c) 2014 Alex Whitney. Licensed under the MIT license.