Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/qianbin/express-toolbox

Tools for Express
https://github.com/qianbin/express-toolbox

express promise

Last synced: 9 days ago
JSON representation

Tools for Express

Awesome Lists containing this project

README

        

## Installation

````javascript
import * as ET from 'express-toolbox'
````

## Usage

````javascript
router.get('/', ET.try$(async (req, res, next) => {
...
}))
````

````javascript
ET.hang(router).until(async () => {
await initializeDatabase()
await ....
})
````