npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@hal313/promiseifyish

v1.0.10

Published

Adds promise style notation to Firebase style functions

Downloads

10

Readme

promiseifyish

Wraps functions and objects into promises.

Build Status NPM version Dependency Status

Introduction

Wraps functions of the form fn([...args], successCallback, failureCallback) into Promises. This can be useful in cases where functions with callbacks are being chained together. Using promises avoids some flow issues and often simplifies the logic.

For example:

someFunction1(() => {
    someFunction2(() => {
        someFunction3(() => {
            someFunction4(() => {}, errorHandler);
        }, errorHandler);
    }, errorHandler;
}, errorHandler);

Becomes

someFunction1()
    .then(someFunction2)
    .then(someFunction3)
    .then(someFunction4)
    .catch(errorHandler)

WARNING: If a success callback is specified as a non-function (such as null or undefined) AND a failure callback is specifed as a function, then the failure function may not correctly be invoked. See issue 4 in GitHub.

See an example.

Usage

Use Promiseifyish to promiseify a function or an object. Project environment dictates how the code is imported. ES6, ES5 and AMD/CommonJS are all supported. Comprehensive documentation and examples may be found at the GitHub pages.

As a function

/**
 * A function to demonstrate callback behavior.
 *
 * @param {boolean} success if true, the success callback will be invoked
 * @param {*} value the value to pass to the callback
 * @param {Function} [successCallback] the success callback
 * @param {Function} [failureCallback] the failure callback
 */
function someFunction(success, value, successCallback, failureCallback) {
    if (success && 'function' === typeof successCallback) {
        successCallback(value);
    } else if (!success && 'function' === typeof failureCallback) {
        failureCallback(value);
    }
}

// Standard usage:
someFunction(true, 'some value',
    value => console.log('standard', 'succes', value),
    error => console.log('standard', 'failure', error)
);


// After promisification:
var promisifiedFunction = Promiseifyish.Promiseify(someFunction);
// Invoke as a promise
promisifiedFunction(true, 'some value')
    .then(value => console.log('promiseified', 'success', value))
    .catch(error => console.log('promiseified', 'failure', error));

As an Object

// Standard usage
var someObject = {
    booleanMember: true,
    stringMember: 'some value',
    functionMember: someFunction(success, value, successCallback, failureCallback) {
        if (success && 'function' === typeof successCallback) {
            successCallback(value);
        } else if (!success && 'function' === typeof failureCallback) {
            failureCallback(value);
        }
    }
};
// Invoke the function
someObject.functionMember(true, 'some value',
    value => console.log('succes', value),
    error => console.log('failure', error)
);


// After promisification:
// Promiseify the object
var promiseifiedObject = Promiseifyish.Promiseify(someObject);
// All functions are now promises
promiseifiedObject.functionMember(true, 'some value')
    .then(value => console.log('success', value))
    .catch(error => console.log('failure', error));

Advanced Usage

Passing options to the Promiseify function can alter the behavior of promiseification.

If neither only nor include are specified, all functions are included except for functions on Object.

only

Using {only: ['function1'[, ..., 'functionN']]} as the options object parameter will promiseify only the specified functions, regardless of any other options (specifically exclude).

include

Using {include: ['function1'[, ..., 'functionN']] as the options object parameter will include only the specified functions, subject to any function in exclude.

exclude

Using {exclude: ['function1'[, ..., 'functionN']] as the options object parameter will exclude the specified functions from promiseification. This value is not used when only is used.

outcomeRedirector

Using {outcomeRedirector: (args) => { /* return true or false */}} as the options object parameter will

Some API's are not designed with both a success callback and a failure callback.

Developing

Setup

npm install

Running Tests

To run tests against the source code and dist folder (including coverage):

npm test

Runing tests continuously:

npm run test:watch

Building

A build produces the contents of the dist folder:

  • A UMD version of the library (dist/Promiseifyish.js)
  • An ES6 version of the library (dist/Promiseifyish.es6.js)

Building:

npm run build

Building continuously on source changes:

npm run watch:build

Distribution

A distribution adds to the build:

  • A minified UMD version of the library (dist/Promiseifyish.min.js)
  • A source map (dist/Promiseifyish.min.js.map)

Building a distribution:

npm run dist

Building a distribution continuously on source changes:

npm run watch:dist

End to End Development

Running the build pipeline, including tests, continuously:

npm run watch:develop