Giter Club home page Giter Club logo

awesome-promises's Introduction

Promises/A+ logo

Awesome Promises Awesome

A curated list of useful resources for JavaScript Promises

Inspired by the awesome list thing. Not to be confused with other awesome promises like "I promise you a million dollars" or "I promise you'll stay fit and never have to go to the gym again".

Table of Contents

Resources, Blogs, and Books

For beginners

Deep Dive

References

Promises/A+ Implementations (ES6/ES2015 compatible)

Strict Implementations

These implement no more or less than the es6 spec. They make great polyfills and are exceptionally compatible with native promises.

Implementations with extras

All of these provide more features than the language yet remain compatible. Node + Browsers for all.

  • bluebird ★10,725 - Fully featured, extremely performant. Long stack traces & generator/coroutine support.
  • rsvp.js - Lightweight with a few extras. Compatible down to IE6!
  • Q ★11,488 - One of the original implementations. Long stack traces and other goodies.
  • then/promise ★1,112 - Small with nodeify, denodify and done() additions.
  • when.js ★2,921 - Packed with control flow, functional, and utility methods.

Fallbacks

Convenience Utilities

Native and strictly spec-compliant promises are awesome for compatibility, future-proofness, library authors, and browsers. However, libraries like bluebird patch goodies onto the Promise constructor and prototype. Solution? tiny modules of course!

  • pify ★159 - Promisify ("denodify") a callback-style function.
  • promise-each ★10 - Standalone bluebird.each. Execute one after the other sequentially.
  • promise-filter ★6 - Standalone bluebird.filter. Filter an array to a promise.
  • promise-finally ★2 - Standalone bluebird finally(). Execute a handler unconditionally after others have been handled.
  • promise-map ★7 - Standalone bluebird.map. Map an array to a promise.
  • promise-method ★1 - Standalone bluebird.method. Turn a synchronously-returning method into a promise-returning one.
  • promise-props ★3 - Standalone implementation of bluebird's bluebird.props or rsvp's RSVP.hash
  • promise-reduce ★6 - Standalone bluebird.reduce. Reduce an array to a promise.
  • promise-some ★4 - Standalone bluebird.some. Check if an element passes the predicate, return a promise.
  • promise-try ★2 - Standalone bluebird.try. Execute a synchronously-returning function and return a promise.
  • is-promise ★22 - Determine if something looks like a Promise.
  • sprom ★10 - Resolve when a stream ends. Optional buffering (be careful with this!)
  • task.js ★1,490 - Write async functions in a blocking style using promises and generators. Like bluebird.coroutine.
  • co ★5,192 - Like task.js and bluebird.coroutine, but supports thunks too.
  • lie-fs - Promise wrappers for Node's FS API.
  • immediate-promise ★37 - Returns a promise resolved in the next event loop - think setImmediate().
  • delay ★82 - Delay a promise a specified amount of time.
  • promise-whilst ★15 - Calls a function repeatedly if and while a condition returns true and then resolves the promise.
  • loud-rejection ★87 - Make unhandled promise rejections fail loudly instead of the default silent fail.
  • promise-until ★0 - Calls a function repeatedly if a condition returns false and until the condition returns true and then resolves the promise.
  • promise-do-until ★0 - Calls a function repeatedly until a condition returns true and then resolves the promise.
  • promise-do-whilst ★0 - Calls a function repeatedly while a condition returns true and then resolves the promise.
  • promise-semaphore ★22 - Push a set of work to be done in a configurable serial fashion

License

Licensed under the Creative Commons CC0 License.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.