You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

nice-try

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nice-try

Tries to execute a function and discards any error that occurs


Version published
Weekly downloads
14M
decreased by-1.43%
Maintainers
1
Install size
3.76 kB
Created
Weekly downloads
 

Package description

What is nice-try?

The nice-try npm package is a utility module that provides a simple way to attempt executing a function that might or might not throw an error without having to use try-catch blocks explicitly. It is designed to be a minimalistic and straightforward tool for safe function execution.

What are nice-try's main functionalities?

Safe Function Execution

This feature allows you to execute a function and if it throws an error, nice-try will catch it and return undefined instead of letting the error propagate. This is useful when you want to attempt an operation but don't want to handle the error explicitly.

const niceTry = require('nice-try');

const result = niceTry(() => {
  // Potentially risky operation
  return 'Operation successful';
});

console.log(result); // Outputs: 'Operation successful' or undefined if an error occurred

Other packages similar to nice-try

Changelog

Source

[3.0.1] - 2022-09-17

Added

  • README now includes a "What others say" section

Readme

Source

nice-try

Build Coverage Status

A function that tries to execute a function and discards any error that occurs.

Install

npm install nice-try

Usage

const niceTry = require('nice-try')

niceTry(() => JSON.parse('true')) // true
niceTry(() => JSON.parse('truee')) // undefined
niceTry() // undefined
niceTry(true) // undefined

await niceTry.promise(async () => JSON.parse('true')) // true
await niceTry.promise(async () => JSON.parse('truee')) // undefined

API

Parameters

  • fn {Function} Function that might or might not throw an error.

Returns

  • {?*} Return-value of the function when no error occurred.

What others say

This module is a controversial thing and people like to get mad about it. I decided to give those people a voice. Here's what they're saying.

fundamentally inane

— frou_dh

the worst Javascript library […] in several categories

— kuzux

how is this a thing

— uint8_t

This is blowing my mind

— mr_jim_lahey

a shit-tastic try-catch alias

— Dropping_fruits

I assumed every commit was a joke, but after researching the maintainer a bit I'm not sure it is...

— MrPineappleHat

Keywords

FAQs

Package last updated on 17 Sep 2022

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc