🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

express-promise-router

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-promise-router

A lightweight wrapper for Express 4's Router that allows middleware to return promises

4.1.1
latest
Version published
Weekly downloads
164K
-9.45%
Maintainers
2
Weekly downloads
 
Created

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

FAQs

Package last updated on 30 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts