
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
A simple async/sync catry function for safe error handling in Node.js and browser
A simple async/sync catry function for safe error handling in Node.js and browser.
npm install catry
This library provides a simple way to handle errors without using try/catch blocks. It returns an object with error and result properties, making error handling more ergonomic and eliminating the need for explicit try/catch blocks.
The guard function takes a function as an argument and safely executes it, returning an object with error and result properties.
For synchronous functions, it returns the result directly. For asynchronous functions, it awaits the result.
/*
Example 1: Basic usage of the guard function
*/
// Import the guard function
const catry = require('catry');
// This demonstrates safe error handling - no try/catch needed
const { error, result } = await catry(() => 1 + 1);
// Output shows that error is undefined and result is 2
console.log('Example 1 result:', error); // Should be undefined
console.log('Example 1 result:', result); // Should be 2
/*
Example 2: Handling errors with guard function
*/
// Import the guard function
const catry = require('catry');
// This demonstrates safe error handling - no try/catch needed
const { error, result } = await catry(() => {
throw new Error('Something went wrong');
});
// Output shows that error contains the error and result is undefined
console.log('Error:', error?.message); // Should print the error message
console.log('Result:', result); // Should be undefined
MIT License
Manish Gautam
FAQs
A simple async/sync catry function for safe error handling in Node.js and browser
The npm package catry receives a total of 3 weekly downloads. As such, catry popularity was classified as not popular.
We found that catry demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.