Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

p-try

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

p-try

`Start a promise chain

  • 3.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
49M
increased by1.93%
Maintainers
1
Weekly downloads
 
Created

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

Keywords

FAQs

Package last updated on 04 Oct 2021

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