yeps-promisify

1.1.1 • Public • Published

Recursive loop promise generator for yeps

It helps with looping promises. It's promises middleware realisation.

NPM

npm version Build Status Coverage Status Linux Build Windows Build

Dependency Status devDependency Status NSP Status

License GitHub stars GitHub forks GitHub issues Twitter

How to install

npm i -S yeps-promisify

How to use

const promisify = require('yeps-promisify');

async () => {
    const context = {};
    
    const promises = [
        async (context) => {
            // some stuff with context
        },
        async (context) => {
            // some other stuff with context
        },
        ...
    ];
    
    try {
        await promisify(context, promises);
    } catch (error) {
        // error handler
    }
}    

YEPS documentation

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.1
    86
    • latest

Version History

Package Sidebar

Install

npm i yeps-promisify

Weekly Downloads

25

Version

1.1.1

License

MIT

Last publish

Collaborators

  • evheniy.bystrov