Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tarabyte/loopback-async-boot

Higher order function to use async functions as loopback boot scripts.
https://github.com/tarabyte/loopback-async-boot

async helper loopback

Last synced: about 2 months ago
JSON representation

Higher order function to use async functions as loopback boot scripts.

Awesome Lists containing this project

README

        

# loopback-async-boot

Higher order function to use async functions as loopback boot scripts.

## Usage

```
// boot/script.js
const handler = require('loopback-async-boot');

module.exports = handler(async(app) => {
await ...
});
```