async-express
Simple middleware wrapper to make Express handlers async compatible.
Usage
npm install --save async-express
In a route
const express = ;const asyncExpress = ; const app = ; // As a routeapp;
The sample above can be refactored as the following
const express = ;const asyncExpress = ; const app = ; const waitForABit = ; app;