
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
express-async-errors
Advanced tools
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.
nextAs 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.
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.
FAQs
Async/await error handling support for expressjs
The npm package express-async-errors receives a total of 376,059 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
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.