Socket
Socket
Sign inDemoInstall

standard-as-callback

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    standard-as-callback

A performant and standard (Bluebird) library that registers a node-style callback on a promise


Version published
Weekly downloads
4.2M
increased by0.57%
Maintainers
1
Install size
6.05 kB
Created
Weekly downloads
 

Package description

What is standard-as-callback?

The standard-as-callback npm package is designed to convert standard Node.js style callback functions into a format that can be used with promises. This is particularly useful when working with older Node.js APIs or third-party libraries that do not return promises natively. By wrapping these functions with standard-as-callback, developers can work with them using promise chains or async/await syntax, which can lead to cleaner and more maintainable code.

What are standard-as-callback's main functionalities?

Converting callback to promise

This feature allows you to convert a standard Node.js callback-style function into a promise. In the code sample, the fs.readFile function, which normally takes a callback, is converted into a promise-returning function using standard-as-callback. This allows for the use of .then() and .catch() for handling the asynchronous operation.

const standardAsCallback = require('standard-as-callback');
const fs = require('fs');

const readFilePromise = standardAsCallback(fs.readFile);

readFilePromise('example.txt', 'utf8').then(content => {
  console.log(content);
}).catch(error => {
  console.error(error);
});

Other packages similar to standard-as-callback

Readme

Source

Standard asCallback

A performant and standard (Bluebird) library that registers a node-style callback on a promise.

Build Status

Install

$ npm install standard-as-callback

Usage

const asCallback = require('standard-as-callback')

const promise = new Promise(function (resolve) {
  setTimeout(function () {
    resolve('hello world!')
  }, 1000)
})

asCallback(promise, function callback (err, res) {
  console.log(err, res) // null, 'hello world!'
})

Thanks

Most code of this library are ported from the awesome Bluebird library.

License

The MIT License.

Keywords

FAQs

Last updated on 14 Mar 2021

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc