Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

breeze

Package Overview
Dependencies
Maintainers
2
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

breeze

Functional async flow control library

  • 1.1.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
131
increased by13.91%
Maintainers
2
Weekly downloads
 
Created
Source

Breeze

Functional async flow control library. Turn your asynchronous code into bite-sized synchronous looking functions.

version License Downloads Dependencies

Install

  • Download the latest package
  • NPM: npm install breeze

Usage

Node.js / Browserify

var breeze = require('breeze')

API

  • breeze(next) - Initialize breeze flow system, supports initial .then method.
  • .when(check, next) - When check is truthy, add next to the stack
  • .maybe(check, next) - When check is truthy, add next to the stack, sugar for breeze.when
  • .some(check, next) - When check is truthy and no other some or none has ran, add to the stack
  • .none(next) - Whenever no some have ran, add callback to the stack
  • .then(next) - Add callback to stack
  • .catch(next) - Any error caught will terminate stack and be sent here
  • .promise() - Returns a deferred promise system, allowing for a second .catch
  • .reset() - Reset current system

Next

The next method passed through breeze has a very small api. It accepts two variants of usage, normal node style err, arguments..., and promise, arguments....

When a truthy err is passed the system will halt (no other actions will be taken) and .catch will be triggered.

When a promise is passed the system will attach to either the then / catch methods, or the .then(then, catch) method style depending on the promise type passed. Whenever the then is invoked, any arguments passed along with the passed promise are placed at the front of the arguments array, and the success arguments will be last.

This allows you to chain multiple promises while still passing values down the chain.

Example

function fetchUserTodos (username) {
  // Initialize breeze, fetch a user
  var flow = breeze(function (next) {
    next(api(token).getUser(username))
  })

  // Fetch user todos, pass user along the chain
  flow.then(function (next, user) {
    next(user.getTodos(), user)
  })

  // Catch bugs before you do your work!
  flow.when(function (user, todos) {
    return todos.getLength() < 0
  }, function (next, user, todos) {
    todos.reset()
    next(todos.save(), user)
  })

  // Do whatever else you want
  flow.then(function (next, user, todos) {
    next(null, user, todos)
  })

  flow.catch(function (err) {
    // handle internal function error should you want
    if (err.code === 500) {
      console.error('Holy Switch A Roo Batman! I think something really went wrong.')
    }

    console.error(err)
  })

  return flow.promise()
}

var promise = fetchUserTodos('nijikokun')

promise.then(function (user, todos) {
  // Show todos
})

promise.catch(function (err) {
  // Show error in application
})

Examples

Check out the examples directory for in-depth examples and tutorials of how to use breeze.

License

Licensed under The MIT License.

Keywords

FAQs

Package last updated on 22 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc