@dvpnt/express-async-patch

simple express monkey patch for async handlers support

Usage no npm install needed!

<script type="module">
  import dvpntExpressAsyncPatch from 'https://cdn.skypack.dev/@dvpnt/express-async-patch';
</script>

README

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