Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 273 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 273 Bytes

Installation

import * as ET from 'express-toolbox'

Usage

router.get('/', ET.try$(async (req, res, next) => {
  ...
}))
ET.hang(router).until(async () => {
	await initializeDatabase()
	await ....
})