loopback-async-boot
v0.0.2
Published
Higher order wrapper to allow async functions as loopback boot scripts
Downloads
5
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 ...
});