Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
domexception
Advanced tools
The domexception npm package provides a way to create DOMException objects, which represent exceptions that occur while interacting with the Document Object Model (DOM). This package is particularly useful when working with DOM-like structures in non-browser environments, such as Node.js, where the DOMException global is not available by default.
Creating a new DOMException
This feature allows you to create a new DOMException object with a custom error message and name. The name should be one of the DOMException error names, such as 'NotFoundError', 'SyntaxError', etc.
const DOMException = require('domexception');
const exception = new DOMException('Error message', 'NotFoundError');
Checking the instance of DOMException
This feature is useful for checking if a given object is an instance of DOMException, which can be helpful for error handling and debugging.
const exception = new DOMException('Error message', 'NotFoundError');
console.log(exception instanceof DOMException); // true
The 'error' package provides a way to create custom error objects in Node.js. It is similar to domexception in that it allows for the creation of error objects, but it does not specifically implement the DOMException interface.
The 'es6-error' package allows for the creation of custom errors that extend the built-in Error class. While it provides similar functionality in terms of creating error objects, it does not offer the specific DOMException types that domexception does.
This package implements the DOMException
class, from web browsers. It exists in service of jsdom and related packages.
Example usage:
const DOMException = require("domexception");
const e1 = new DOMException("Something went wrong", "BadThingsError");
console.assert(e1.name === "BadThingsError");
console.assert(e1.code === 0);
const e2 = new DOMException("Another exciting error message", "NoModificationAllowedError");
console.assert(e2.name === "NoModificationAllowedError");
console.assert(e2.code === 7);
console.assert(DOMException.INUSE_ATTRIBUTE_ERR === 10);
This package exposes two flavors of the DOMException
interface depending on the imported module.
domexception
moduleThis module default-exports the DOMException
interface constructor.
domexception/webidl2js-wrapper
moduleThis module exports the DOMException
interface wrapper API generated by webidl2js.
FAQs
An implementation of the DOMException class from browsers
The npm package domexception receives a total of 12,838,403 weekly downloads. As such, domexception popularity was classified as popular.
We found that domexception demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.