tgriesser / promise-router

Express router ready for async/await in the route methods

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Express router ready for async/await in the route methods


Languages

Language:TypeScript 99.3%Language:JavaScript 0.7%