Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
error-class-utils
Advanced tools
Properly create error classes.
Useful utilities when creating custom error classes.
error.cause
on
older Node.js and browserserror.name
Error
has been
polyfilledimport {
ensureCorrectClass,
ponyfillCause,
setErrorName,
} from 'error-class-utils'
export class CustomError extends Error {
constructor(message, parameters) {
super(message, parameters)
// Fix some issues when `Error` has been polyfilled
ensureCorrectClass(this, new.target)
// Ponyfill `error.cause` on old Node.js/browsers
ponyfillCause(this, parameters)
}
}
// Properly set `error.name` as a non-enumerable and inherited property
setErrorName(CustomError, 'CustomError')
import { CustomError } from './errors.js'
const cause = new Error('innerMessage')
const error = new CustomError('message', { cause })
console.log(error instanceof CustomError) // true
console.log(error.name) // 'CustomError'
console.log(error.cause) // Error: innerMessage ...
npm install error-class-utils
This package works in both Node.js >=14.18.0 and
browsers.
It is an ES module and must be loaded using
an import
or import()
statement,
not require()
.
error
Error
new.target
typeof Error
Return value: void
Some Error
polyfills (such as
es-shims/error-cause
) prevent
extending from it. This fixes it.
The second argument must be
new.target
.
This must be called directly inside a class constructor, after
super(message, parameters)
.
import { ensureCorrectClass } from 'error-class-utils'
class CustomError extends Error {
constructor(message, parameters) {
super(message, parameters)
ensureCorrectClass(this, new.target)
}
}
// Thanks to `ensureCorrectClass()`, this is now always true even when
// `Error` has been polyfilled
console.log(new CustomError('message') instanceof CustomError) // true
error
Error
parameters
ErrorParams?
Return value: void
Ponyfills
error.cause
on
older Node.js and browsers.
This must be called inside a class constructor, after
super(message, parameters)
.
import { ponyfillCause } from 'error-class-utils'
class CustomError extends Error {
constructor(message, parameters) {
super(message, parameters)
ponyfillCause(this, parameters)
}
}
try {
throw new Error('innerMessage')
} catch (cause) {
// Works on any platforms thanks to ponyfill
const error = new CustomError('message', { cause })
console.log(error.cause.message) // 'innerMessage'
}
ErrorClass
typeof Error
name
string
Return value: void
Set an ErrorClass
's
name
.
This must be performed on an error class, not instance. Unlike setting
this.name = '...'
inside an error's constructor, this follows the native
Error
classes' pattern where error.name
:
Error
suffixname
import { setErrorName } from 'error-class-utils'
class CustomError extends Error {}
setErrorName(CustomError, 'CustomError')
console.log(CustomError.name) // 'CustomError'
console.log(CustomError.prototype.name) // 'CustomError'
const error = new CustomError('message')
console.log(error.name) // 'CustomError'
console.log(Object.keys(error).includes('name')) // false
modern-errors
: Handle errors in
a simple, stable, consistent wayerror-custom-class
: Create
one error classerror-serializer
: Convert
errors to/from plain objectsnormalize-exception
:
Normalize exceptions/errorsis-error-instance
: Check if
a value is an Error
instancemerge-error-cause
: Merge an
error with its cause
set-error-class
: Properly
update an error's classset-error-message
: Properly
update an error's messagewrap-error-message
:
Properly wrap an error's messageset-error-props
: Properly
update an error's propertiesset-error-stack
: Properly
update an error's stackerror-cause-polyfill
:
Polyfill error.cause
handle-cli-error
: 💣 Error
handler for CLI applications 💥log-process-errors
: Show
some ❤ to Node.js process errorserror-http-response
:
Create HTTP error responseswinston-error-format
: Log
errors with WinstonFor any question, don't hesitate to submit an issue on GitHub.
Everyone is welcome regardless of personal background. We enforce a Code of conduct in order to promote a positive and inclusive environment.
This project was made with ❤️. The simplest way to give back is by starring and sharing it online.
If the documentation is unclear or has a typo, please click on the page's Edit
button (pencil icon) and suggest a correction.
If you would like to help us fix a bug or add a new feature, please check our guidelines. Pull requests are welcome!
FAQs
Properly create error classes
The npm package error-class-utils receives a total of 3,705 weekly downloads. As such, error-class-utils popularity was classified as popular.
We found that error-class-utils demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.