Skip to content

dhakerShiv/promisify-if-no-callback

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

promisify-if-no-callback

The promisify-if-no-callback package is a utility that converts Node.js-style callback functions into Promise-based functions when no callback is provided, allowing you to work with asynchronous operations using either traditional callbacks or modern Promise-based syntax.

Installation

You can install the promisify-if-no-callback package via NPM:

npm install promisify-if-no-callback

Usage

To use the promisify-if-no-callback function, require it in your Node.js application:

const promisifyIfNoCallback = require('promisify-if-no-callback');

Syntax

const promisifiedFunction = promisifyIfNoCallback(originalFunction);

Parameters

  • originalFunction (Function): The function you want to promisify. It should follow the Node.js-style callback pattern where the last argument is a callback function (function (err, result) {}).

Return Value

The promisify-if-no-callback function returns a new function that can be used with Promises. When you call this new function, it either behaves like the original function with a callback or returns a Promise, depending on how you invoke it.

If you pass a callback as the last argument, the function will behave as the original function, allowing you to use callbacks for handling results.

If you don't pass a callback, the promisify-if-no-callback function returns a Promise that resolves with the result when the asynchronous operation completes successfully or rejects with an error if the operation encounters an error.

Examples

1. Promisify an Asynchronous Function with a Callback

const fs = require('fs');
const promisifyIfNoCallback = require('promisify-if-no-callback');

// Promisify the fs.readFile function
const readFilePromise = promisifyIfNoCallback(fs.readFile);

// Use the Promise-based function
readFilePromise('file.txt', 'utf8')
  .then(data => {
    console.log('File contents:', data);
  })
  .catch(err => {
    console.error('Error reading file:', err);
  });

2. Use the Original Callback-Style Invocation

// Assume you have an asynchronous function with a callback
function asyncFunctionWithCallback(param1, param2, callback) {
  // Some asynchronous operation
  setTimeout(() => {
    const result = param1 + param2;
    callback(null, result); // Pass null as the first argument if there's no error
  }, 1000);
}

// Use promisifyIfNoCallback to convert the function to a Promise-based function
const asyncFunctionPromise = promisifyIfNoCallback(asyncFunctionWithCallback);

// Using the original callback-style invocation
asyncFunctionWithCallback(2, 3, (err, result) => {
  if (err) {
    console.error('Error:', err);
  } else {
    console.log('Result (callback):', result);
  }
});

License

This project is licensed under the ISC License.

Issues

If you encounter any problems or have questions about the library, please feel free to open an issue on the GitHub repository.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published