
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
express-async-errors
Advanced tools
The express-async-errors package is a utility for handling errors in asynchronous Express routes and middleware. It allows you to write asynchronous route handlers and middleware without needing to manually catch errors and pass them to the next() function.
Automatic Error Handling in Async Routes
This feature allows you to write asynchronous route handlers without needing to wrap them in try-catch blocks. Any errors thrown in the async function will be automatically passed to the error-handling middleware.
const express = require('express');
require('express-async-errors');
const app = express();
app.get('/async-route', async (req, res) => {
// Simulate an async error
throw new Error('Something went wrong!');
});
app.use((err, req, res, next) => {
res.status(500).send('Internal Server Error');
});
app.listen(3000, () => {
console.log('Server is running on port 3000');
});
Automatic Error Handling in Async Middleware
This feature allows you to write asynchronous middleware without needing to wrap them in try-catch blocks. Any errors thrown in the async middleware will be automatically passed to the error-handling middleware.
const express = require('express');
require('express-async-errors');
const app = express();
app.use(async (req, res, next) => {
// Simulate an async error
throw new Error('Something went wrong in middleware!');
});
app.get('/', (req, res) => {
res.send('Hello World');
});
app.use((err, req, res, next) => {
res.status(500).send('Internal Server Error');
});
app.listen(3000, () => {
console.log('Server is running on port 3000');
});
The async-express package provides similar functionality by allowing you to use async/await in your Express routes and middleware. It also automatically catches errors and passes them to the next() function. However, it requires you to wrap your routes and middleware with a provided function.
The express-promise-router package is an alternative to the default Express router that supports async route handlers and middleware. It automatically catches errors and passes them to the next() function. Unlike express-async-errors, it requires you to use a different router object.
A dead simple ES6 async/await support hack for ExpressJS
Shamelessly copied from express-yields
This has been lightly reworked to handle async rather than generators.
npm install express-async-errors --save
Then require this script somewhere before you start using it:
Async functions already work fine in Express.
const express = require('express');
require('express-async-errors');
const User = require('./models/user');
const app = express();
app.get('/users', async (req, res) => {
const users = await User.findAll();
res.send(users);
});
This library is about what happens when you hit an error.
next
As we all know express sends a function called next
into the middleware, which
then needs to be called with or without error to make it move the request handling
to the next middleware. It still works, but in case of an async function, you
don't need to do that. If you want to pass an error, just throw a normal exception:
app.use(async (req, res) => {
const user = await User.findByToken(req.get('authorization'));
if (!user) throw Error("access denied");
});
app.use((err, req, res, next) => {
if (err.message === 'access denied') {
res.status(403);
res.json({ error: err.message });
}
next(err);
});
This is a very minimalistic and unintrusive hack. Instead of patching all methods
on an express Router
, it wraps the Layer#handle
property in one place, leaving
all the rest of the express guts intact.
The idea is that you require the patch once and then use the 'express'
lib the
usual way in the rest of your application.
All code in this repository is released under the terms of the ISC license.
FAQs
Async/await error handling support for expressjs
The npm package express-async-errors receives a total of 338,491 weekly downloads. As such, express-async-errors popularity was classified as popular.
We found that express-async-errors demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.