breeze icon indicating copy to clipboard operation
breeze copied to clipboard

Javascript async flow control manager

Results 3 breeze issues
Sort by recently updated
recently updated
newest added

Rebuilt from the ground up Breeze fully supports Promises as it is built entirely on the Promise chain. It appears to be competing with Bluebird slightly on feature-set and functionality...

Let's say that I have this code: ``` let breeze = require('breeze'); let flow = breeze(next => next(null, 'something')); flow.then((n, v) => { nonDeclaredVar += 1; //This throws: ReferenceError: nonDeclaredVar...

A feature of A+ Promises that I enjoy is the support for multiple catch handlers at key points. **Problems** - Catch before any step registered, is that the global catch...