Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naver/auto-async-wrap
automatic async middleware wrapper for expressjs errorhandler.
https://github.com/naver/auto-async-wrap
async-await auto automatic error-handler error-handling es6 express express-async-wrapper express-js expressjs javascript middleware wrap wrapper
Last synced: 14 days ago
JSON representation
automatic async middleware wrapper for expressjs errorhandler.
- Host: GitHub
- URL: https://github.com/naver/auto-async-wrap
- Owner: naver
- License: mit
- Created: 2020-06-03T06:24:27.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-16T12:05:31.000Z (5 months ago)
- Last Synced: 2024-10-11T00:37:54.221Z (about 1 month ago)
- Topics: async-await, auto, automatic, error-handler, error-handling, es6, express, express-async-wrapper, express-js, expressjs, javascript, middleware, wrap, wrapper
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/auto-async-wrap
- Size: 571 KB
- Stars: 22
- Watchers: 7
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AutoAsyncWrap
Automatic async middleware wrapper for expressjs.## install
```bash
$ npm install auto-async-wrap --save
```## usage
```javascript
import {Router} from 'express'
import autoAsyncWrap from 'auto-async-wrap'const router = Router()
router.use(['every middlewares what you use.'])
router.use(errorHandler)// after all middlewares are registed.
autoAsyncWrap(router)
```## contribute
send Pull Request to this repository.## license
```
Copyright (c) 2020-present NAVER Corp.Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```