Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
domain-browser
Advanced tools
Node's domain module for the web browser. This is merely an evented try...catch with the same API as node, nothing more.
The domain-browser package is a shim for Node.js's domain module, which allows you to handle multiple different IO operations as a single group. This is particularly useful in the context of handling errors across asynchronous operations. The package provides a way to group and handle errors and cleanup resources in client-side JavaScript that mimics Node.js's domain module functionality.
Error Handling
This feature allows grouping of IO operations and handling errors that occur within that group. The code sample demonstrates creating a domain, setting up an error handler, and running a function that throws an error asynchronously.
var domain = require('domain-browser');
var d = domain.create();
d.on('error', function(err) {
console.error('Caught error!', err);
});
d.run(function() {
setTimeout(function() {
throw new Error('Failed!');
}, 1000);
});
This package provides similar functionality to domain-browser by using async hooks to track asynchronous operations and errors. It differs in that it uses a more modern API provided by Node.js, which can offer better performance and more detailed control over asynchronous contexts.
Zone.js is another library that captures asynchronous operations into 'zones', which is similar to domains but with a broader scope that includes patching asynchronous APIs in the browser to provide context across async operations. It's more comprehensive than domain-browser, often used in frameworks like Angular for managing application state and change detection.
Node's domain module for the web browser. This is merely an evented try...catch with the same API as node, nothing more.
npm install --save domain-browser
import * as pkg from ('domain-browser')
const pkg = require('domain-browser')
<script type="module">
import * as pkg from '//dev.jspm.io/domain-browser@5.7.0'
</script>
This package is published with the following editions:
domain-browser
aliases domain-browser/source/index.js
domain-browser/source/index.js
is ES5 source code for web browsers and Node.js 4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modulesDiscover the release history by heading on over to the HISTORY.md
file.
Discover how to contribute via the CONTRIBUTING.md
file.
Unless stated otherwise all works are:
and licensed under:
v5.7.0 2023 December 29
FAQs
Node's domain module for the web browser. This is merely an evented try...catch with the same API as node, nothing more.
The npm package domain-browser receives a total of 6,456,838 weekly downloads. As such, domain-browser popularity was classified as popular.
We found that domain-browser 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.