1.0.0 • Published 5 years ago

@dvpnt/express-async-patch v1.0.0

Weekly downloads
9
License
MIT
Repository
github
Last release
5 years ago

@dvpnt/express-async-patch

Build Status Coverage Status NPM Version

Simple express monkey patch for async handlers support.

Installation

$ npm install @dvpnt/express-async-patch

Usage

require('@dvpnt/express-async-patch');

const express = require('express');

const app = express();

app.get('/', async () => {
	await Promise.reject(new Error('async error'));
});


app.use((err, req, res, next) => {
	console.log(err.message); // async error

	res.json({error: err.message});
});

License

The MIT License (MIT)