GithubHelp home page GithubHelp logo

promise_deferred's Introduction

Pledge.js

Make a promise: build a deferral-style implementation

Javascript promises are versatile tools for managing asynchronous results. They are portable and can attach handler functions to an eventual value, in multiple places. Compared to the dead end of standard async callbacks, they restore normal control flow — letting you chain results, return new values, and catch errors where most convenient.

One way to understand a thing is to build it yourself. This repo contains a Jasmine 2.0 test spec (split into thematic chapters). Following the spec in order, we will build a deferral-style promise library similar to AngularJS's $q service (based on the Q library by Kris Kowal & Domenic Denicola), which we will call pledge.js. Our promises will be named $promise to avoid triggering browser code. To focus on concepts, pledge.js will use public variables and not be standards-compliant (see below).

Instructions

You'll need Node.js and its package manager npm installed. Assuming that is true, you can globally-install the Testem spec runner with:

npm install -g testem

Next, you'll need to clone this repo to your local machine and cd into it:

git clone https://github.com/glebec/make-promise.git
cd make-promise

Then to execute the spec, simply run testem in that directory and open the link displayed in your terminal. You will see all the upcoming tests as "pending" (yellow). Start writing your own code in the pledge.js file. When you pass a test (green), change the next pending test from xit to it and save. This spec is iterative and opinionated; it is recommended that you do the tests in order.

Associated learning materials

The repo contains the lecture slides and a .then flowchart, both in PDF format.

$q and the state of the art

There are multiple proposed CommonJS promise standards, one leading standard Promises/A+, and upcoming native ES6 browser implementations. Developers of the MEAN stack should become familiar with AngularJS's $q service, a lightweight adaptation of the Q library. Bluebird is also making waves as a highly-performant and powerful library.

Adding to the potential confusion, $q has two possible ways to generate promises: simplified ES6-style constructors, and CommonJS-style deferreds. We will study deferreds because they are more explicit and include a useful method, .notify(). If you can grasp the deferral model, the constructor model will be comparatively straightforward.

Warning

jQuery gurus beware! While jQuery has a version of promises through $.Deferred, that implementation differs from current standards and is considered flawed. See Kris Kowal’s guide.

Technical note on non-compliance

Our pledge.js library is intended to be a learning exercise. Some of the Promises/A+ standards and general OOP principles that pledge.js will not cover include:

  • Handler functions should always be called in an async wrapper (e.g. setTimeout). This makes their behavior more deterministic as they execute after a following synchronous code line.
  • The .then() function should handle assimilation of promises from other libraries ("thenables"). That makes promises interoperable.
  • A promise's state and value should not be directly editable (public), only influenced or accessed through the resolver functions and .then().
  • For simplicity's sake, pledge.js does not follow strict standards terminology. For example, it treats "resolved" and "fulfilled" as synonyms and only uses the former; similarly, it considers a pledge's value as meaning either its fulfilled data or rejected reason.

These and other technical details are important, but for someone just beginning to learn they distract from the core behavior and use patterns.

External Resources for Further Reading

Canon

General

Libraries

Angular and Related

promise_deferred's People

Contributors

ris0 avatar

Watchers

James Cloos avatar  avatar

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.