0.1.0 • Published 11 years ago

promise-simple v0.1.0

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

js-promise-simple

The simple implementation of CommonJS Promises/A.

Usage

From node.js

var Promise = require('promise-simple');

Promise.defer()
.next(function() {
  return "ok"; // call after 1000ms.
}, 1000)
.next(function(res) {
  console.log(res); // call after 2000ms, and res is "ok"
}, 2000);

From browser side javascript

<script src="/path/to/promise-simple.js"></script>
var asyncFunc1 = function() {
  var d = Promise.defer();
  setTimeout(function() {
    d.resolve("first");
  }, 1000);
  return d;
};
var asyncFunc2 = function() {
  var d = Promise.defer();
  setTimeout(function() {
    d.resolve("second");
  }, 1000);
  return d;
};

Promise.when(asyncFunc1, asyncFunc2).then(function(results) {
  console.log(results[0]); // "first"
  console.log(results[1]); // "second"
});

Testing

Using mocha from Node.js.

$npm test

or open "test/browser/promise-simple_test.html" by some browser.