joellesenne / express-async-handler

This repo is archived. Thanks!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome to @joellesenne/express-async-handler 👋

Version Documentation Maintenance License: MIT Twitter: joellesenne

Simple Middleware to manage exceptions within express routes in asynchronous

🏠 Homepage

Table of Contents

Prerequisites

This project requires node and npm. Go check them out if you don't have them locally installed.

Install

npm install --save @joellesenne/express-async-handler

# OR
yarn add @joellesenne/express-async-handler

Usage

const asyncHandler = require('@joellesenne/express-async-handler')

express.get('/', asyncHandler(async (req, res, next) => {
  const bar = await foo.findAll();
  res.send(bar)
}))

Run tests

mocha test/index.test.js

Author

👤 Joël Lesenne

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!

Become a patron

📝 License

Copyright © 2021 Joël Lesenne.
This project is MIT licensed.

About

This repo is archived. Thanks!

License:MIT License


Languages

Language:JavaScript 100.0%