Socket
Socket
Sign inDemoInstall

promiser.js

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

promiser.js

Creates a native ES6 Promise from a function which takes a node style Error-First callback.


Version published
Weekly downloads
6
increased by500%
Maintainers
1
Weekly downloads
 
Created
Source

promiser.js

Create native ES6 promises from functions which take node-style callbacks.

How to use

require the library:

const createPromise = require('./promiser.js');

How to create promises from functions.

const fs = require('fs');

createPromise(fs.readFile)('test.js', 'utf8').
  then(() => console.log('SUCCESSFUL SUCCESS (function)')).
  catch(() => { throw new Error('FAILED SUCCESS (function)');});

createPromise(fs.readFile)('non-existent-file', 'utf8').
  then(() => { throw new Error('FAILED FAILURE (function)');}).
  catch(() => console.log('SUCCESSFUL FAILURE (function)'));

How to create promise from methods.

Assuming we have a class which has a prototype function, a, which takes a node-style callback:

class TestClass {
  constructor(successStr, failStr, success) {
    this.failStr = failStr;
    this.successStr = successStr;
    this.success = success;
  }
  a(errFirstCallBack) {
    if (this.success) {
      errFirstCallBack(null, this.successStr);
    } else {
      errFirstCallBack(this.failStr, null);
    }
  }
}

Instantiate the class, then create a promise from the method a by passing it to promiser, just don't forget to pass the context aswell!

const testClassSuccess = new TestClass('SUCCESSFUL SUCCESS (method)', 'FAILED SUCCESS (method)', true);

createPromise(testClassSuccess.a, testClassSuccess)().
  then(console.log).
  catch(console.error);

const testClassFailure = new TestClass('FAILED FAILURE (method)', 'SUCCESSFUL FAILURE (method)', false);

createPromise(testClassFailure.a, testClassFailure)().
  then(console.log).
  catch(console.error);

FAQs

Package last updated on 14 Sep 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc