@tgriesser/promise-router
TypeScript icon, indicating that this package has built-in type declarations

3.1.0 • Public • Published

promise-router

yarn add @tgriesser/promise-router

Express Router, attaching a .catch(next) on any promise-returning routes to ensure unhandled exceptions don't hang the process.

Allows for use of async / await in express middleware without worrying

Use:

import { promiseRouter } from '@tgriesser/promise-router'
// Alternatively: const { promiseRouter } = require('@tgriesser/promise-router')

const app = express();
const router = promiseRouter();

router.get('/some-route', async (req, res) => {
  const val = await someAsyncFunction()
  res.json(val);
});

app.use(router);

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i @tgriesser/promise-router

Weekly Downloads

104

Version

3.1.0

License

MIT

Unpacked Size

110 kB

Total Files

23

Last publish

Collaborators

  • tgriesser