
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
@isomorphic-git/path-browserify
Advanced tools
The
pathmodule from Node.js for browsers
This implements the Node.js path module for environments that do not have it, like browsers.
path-browserifycurrently matches the Node.js 10.3 API.
npm install @isomorphic-git/path-browserify
import path from '@isomorphic-git/path-browserify';
const filename = 'logo.png';
const logo = path.join('./assets/img', filename);
document.querySelector('#logo').src = logo;
Methods under path can be imported individually.
import { join } from '@isomorphic-git/path-browserify';
If your project uses CommonJS, this is also supported.
const path = require('@isomorphic-git/path-browserify');
See the Node.js path docs. path-browserify currently matches the Node.js 10.3 API.
path-browserify only implements the POSIX functions, not the win32 ones.
PRs are very welcome! The main way to contribute to path-browserify is by porting features, bugfixes and tests from Node.js. Ideally, code contributions to this module are copy-pasted from Node.js and transpiled to ES5, rather than reimplemented from scratch. Matching the Node.js code as closely as possible makes maintenance simpler when new changes land in Node.js.
This module intends to provide exactly the same API as Node.js, so features that are not available in the core path module will not be accepted. Feature requests should instead be directed at nodejs/node and will be added to this module once they are implemented in Node.js.
If there is a difference in behaviour between Node.js's path module and this module, please open an issue!
FAQs
The path module from Node.js core for browsers
The npm package @isomorphic-git/path-browserify receives a total of 279 weekly downloads. As such, @isomorphic-git/path-browserify popularity was classified as not popular.
We found that @isomorphic-git/path-browserify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.