Giter Site home page Giter Site logo

promise.js's Introduction

Promises/A+ logo

Promise.js

Very simple but complete Promise implementation.

  • Implements the Promises/A+ 1.1.0 specification:
    • Promise.prototype.then(onResolve, onReject).
  • Implements the ES6 Promise draft:
    • new Promise(function(resolve, reject){}),
    • Promise.all(iterable),
    • Promise.race(iterable),
    • Promise.reject(reason),
    • Promise.resolve(value),
    • Promise.prototype.catch(onReject).
  • Implements some of the earlier proposed features for Promises/A:
    • Promise.prototype.get(propertyName),
    • Promise.prototype.call(methodName),
    • Third optional argument onProgress to then:
      • Promise.prototype.then(onResolve, onReject, onProgress).
  • And to actually be able to use the progress handler:
    • Third argument progress for the executor function passed to new Promise:
      • new Promise(function(resolve, reject, progress){}).
  • Tests against the Promises/A+ tests as well as some "local" tests (most of which are adapted copies if tests found in domenic/promises-unwrapping) for the functionality that's not part of Promises/A+.

Example

function get(url){
	var promise = new Promise(function(resolve, reject, progress){
		var request = new XMLHttpRequest();

		request.addEventListener('load', function(){
			if (request.status == 200){
				resolve(request.response);
			} else {
				reject(new Error(request.statusText));
			}
		}, false);

		request.addEventListener('progress', progress, false);
		request.addEventListener('error', reject, false);
		request.addEventListener('abort', reject, false);

		request.open('GET', url, true);
		request.send();
	});
	return promise;
}

get('/some/path').then(
	function(response){
		console.log(response);
	},
	function(reason){
		console.log(reason);
	},
	function(event){
		console.log(event);
	}
);

promise.js's People

Contributors

timwienk avatar

Stargazers

Roy Teusink avatar

Watchers

 avatar James Cloos 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.