safe-wrapper is a lightweight utility for javascript that simplifies error handling for both synchronous and asynchronous functions. inspired by the safe assignment operator proposal, this utility allows for graceful error management by wrapping functions in a way that enables error handling without the need for explicit try-catch
blocks.
- handles synchronous and asynchronous functions.
- supports specifying error types to control which errors are caught and handled.
- returns consistent responses in
[error, result]
format where error is null if no error occurred.
npm install safe-wrapper
import safe
from safe-wrapper
to use it with any function.
the safe
function takes a target function (synchronous or asynchronous) and returns a function which handles errors and returns a response in a consistent way. the function returns an array [error, result]
, where error
is an instance of the specified error type or null
if successful, and result
is the result of the function when there is no error.
we can directly wrap any function definition with safe.
import { safe } from 'safe-wrapper';
const safeSync = safe((args) => {
throw new Error('sync error occurred');
});
const safeAsync = safe(async (args) => {
throw new Error('async error occurred');
});
const [error, result] = await safeAsync(args);
safe can be applied to pre-existing functions, including ones from third-party libraries.
import { safe } from 'safe-wrapper';
const sync = (args) => {
throw new Error('sync error occurred');
}
const safeSync = safe(sync);
const [error, result] = safeSync(args);
we can specify error types to catch, allowing other errors to throw.
import { safe } from 'safe-wrapper';
const safeAsync = safe(async (args) => {
throw new TypeError('async type error occurred');
}, [TypeError]);
const [error, result] = await safeAsync(args);
we can specify multiple error types when wrapping a function, enabling safe to catch any of the specified errors.
import { safe } from 'safe-wrapper';
const sync = (args) => {
if (args) {
throw new TypeError('sync type error occurred');
} else {
throw new RangeError('sync range error occurred');
}
}
const safeSync = safe(sync, [TypeError, RangeError]);
const [error, result] = safeSync(args);
we can also wrap built-in functions, like JSON.parse
, Object.keys
, and more.
import { safe } from 'safe-wrapper';
const safeJsonParse = safe(JSON.parse);
const [error, result] = safeJsonParse('invalid_json');
const [error, result] = safe(Object.keys, [TypeError])(null);
safe(action, types)
- parameters
- action (function): function to be wrapped. it can either be synchronous or asynchronous.
- types (array, optional): an array of error types to catch. if no types are specified, all errors are caught.
- returns
[error, result]
- error (error | null): the error object if error occurred, otherwise null.
- result (any): the result of the action function if no error occurred, otherwise null.
this structure keeps it concise, approachable, and clear for all levels of users.