
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
create-error
Advanced tools
A simple helper for creating subclassed errors in Javascript.
$ npm install create-error
$ bower install create-error
var createError = require('create-error');
var MyCustomError = createError('MyCustomError');
var SubCustomError = createError(MyCustomError, 'CoolSubError', {messages: []});
var sub = new SubCustomError('My Message', {someVal: 'value'});
sub instanceof SubCustomError // true
sub instanceof MyCustomError // true
sub instanceof Error // true
assert.deepEqual(sub.messages, []) // true
assert.equal(sub.someVal, 'value') // true
Creates a new error by specifying the name of the error to be created, taking an optional hash of properties to be attached to the error class upon creation.
Create a new error by specifying the Target
error class we wish to inherit from,
along with an optional name and properties for the error. If the name
is omitted,
it will have the same name as the parent error.
In the browser, the function will be assigned to window.createError
,
and createError.noConflict()
will restore the original window.createError
if overwritten.
MIT
FAQs
Simple helper for sub-classing the Error object
The npm package create-error receives a total of 159,214 weekly downloads. As such, create-error popularity was classified as popular.
We found that create-error 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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.