Socket
Socket
Sign inDemoInstall

p-try

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    p-try

`Start a promise chain


Version published
Weekly downloads
45M
increased by1.99%
Maintainers
1
Install size
5.00 kB
Created
Weekly downloads
 

Package description

What is p-try?

The p-try npm package is used to start a promise chain and execute a function asynchronously. It is a simple utility that allows you to attempt to execute a function and return a Promise that resolves with the function's result or rejects if the function throws an error.

What are p-try's main functionalities?

Asynchronous function execution

This feature allows you to execute a function asynchronously and handle the result or error using promise chaining.

const pTry = require('p-try');

pTry(() => {
  return 'result';
}).then(result => {
  console.log(result); // 'result'
}).catch(error => {
  console.error(error);
});

Other packages similar to p-try

Readme

Source

p-try

Start a promise chain

How is it useful?

Install

npm install p-try

Usage

import pTry from 'p-try';

try {
	const value = await pTry(() => {
		return synchronousFunctionThatMightThrow();
	});
	console.log(value);
} catch (error) {
	console.error(error);
}

API

pTry(fn, ...arguments)

Returns a Promise resolved with the value of calling fn(...arguments). If the function throws an error, the returned Promise will be rejected with that error.

Support for passing arguments on to the fn is provided in order to be able to avoid creating unnecessary closures. You probably don't need this optimization unless you're pushing a lot of functions.

fn

The function to run to start the promise chain.

arguments

Arguments to pass to fn.

  • More…

Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.

Keywords

FAQs

Last updated on 04 Oct 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