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

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. 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); } } }

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

// Remember to pass context to createPromise 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 23 Aug 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