New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

yapa

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yapa

Yet another Promises/A+ implementation.

latest
Source
npmnpm
Version
0.2.0
Version published
Weekly downloads
8
Maintainers
1
Weekly downloads
 
Created
Source

build status

Yapa

Yapa is an implementation of Promises/A+ with some extra methods bolted on. It passes the Promises/A+ Compliance Test Suite.

Installation

Download

$ npm install yapa

Require

var yapa = require('yapa');

API

constructor

Constructs a new promise, but you probably already knew that.

var promise = new yapa.Promise();

Promise#fulfill(value)

Transitions promise from pending state to fulfilled state. The promise's onFulfilled callbacks will be invoked in the order they were attached. value will be the argument passed to the promise's onFulfilled callbacks.

promise.fulfill('42');

Promise#reject(reason)

Transitions promise from pending state to rejected state. The promise's onRejected callbacks will be invoked in the order they were attached. reason will be the argument passed to the promise's onRejected callbacks.

promise.reject(new Error('cannot compute'));

Promise#then(onFulfilled, onRejected)

Provides an interface for accessing the promise's current or eventual fulfillment value or rejection reason. When the promise is fulfilled or rejected, the corresponding callback will be invoked. If the promise has already been fulfilled or rejected, the corresponding callback will be invoked on the next loop through the event queue.

var onFulfilled = function(value) { /* celebrate! */ }
  , onRejected = function(reason) { /* mourn */ };

promise.then(onFulfilled, onRejected);

Promise#error(onRejected)

Sugar for then(null, onRejected).

Promise#values(onFulfilled)

Similar to the then method, however rather than have onFulfilled's argument list only consist of the promise's fulfillment value, its argument list consists of the promise's fulfillment value and the fulfillment values of all of the preceding promises in the promise chain.

  promise
  .then(function() { return 123; })
  .then(function() { return 'do re mi'; })
  .values(function(start, easyAs, simpleAs) { 
    console.log(start);
    console.log('easy as %s', easyAs);
    console.log('simple as %s', simpleAs);
  });

  promise.fulfill('abc');

Testing

$ cd yapa
$ npm test

Issues

Found a bug? Create an issue on GitHub.

https://github.com/jharding/yapa/issues

Versioning

For transparency and insight into the release cycle, releases will be numbered with the follow format:

<major>.<minor>.<patch>

And constructed with the following guidelines:

  • Breaking backwards compatibility bumps the major
  • New additions without breaking backwards compatibility bumps the minor
  • Bug fixes and misc changes bump the patch

For more information on semantic versioning, please visit http://semver.org/.

License

Copyright (c) 2013 Jake Harding
Licensed under the MIT License.

Keywords

Promises/A+

FAQs

Package last updated on 06 Jan 2013

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