dvpnt / express-async-patch

simple express monkey patch for async handlers support

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@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)

About

simple express monkey patch for async handlers support

License:MIT License


Languages

Language:JavaScript 100.0%