try-to-catch
v4.0.3
Published
function try-catch wrapper for promises
Downloads
157,496
Maintainers
Readme
Try to Catch

Functional try-catch wrapper for promises.
Install
npm i try-to-catchAPI
tryToCatch(fn, [...args])
Wrap function to avoid try-catch block, resolves [error, result];
Example
Simplest example with async-await:
import tryToCatch from 'try-to-catch';
const reject = Promise.reject.bind(Promise);
await tryToCatch(reject, 'hi');
// returns
// [ Error: hi]Can be used with functions:
import {tryToCatch} from 'try-to-catch';
await tryToCatch(() => 5);
// returns
[null, 5];Advanced example:
import {readFile, readdir} from 'node:fs/promises';
import {tryToCatch} from 'try-to-catch';
const [error, data] = await tryToCatch(read, process.argv[2]);
if (error) {
console.error(error);
process.exit(1);
}
console.log(data);
async function read(path) {
const [error, data] = await tryToCatch(readFile, path, 'utf8');
if (!error)
return data;
if (error.code !== 'EISDIR')
return error;
return await readdir(path);
}Related
- try-catch - functional try-catch wrapper.
License
MIT
