
Security News
New React Server Components Vulnerabilities: DoS and Source Code Exposure
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.
browser-resolve
Advanced tools

node.js resolve algorithm with browser field support.
Resolve a module path and call cb(err, path [, pkg])
Options:
basedir - directory to begin resolving frombrowser - the 'browser' property to use from package.json (defaults to 'browser')filename - the calling filename where the require() call originated (in the source)modules - object with module id/name -> path mappings to consult before doing manual resolution (use to provide core modules)packageFilter - transform the parsed package.json contents before looking at the main fieldpaths - require.paths array to use if nothing is found on the normal node_modules recursive walkAdditionally, options supported by node-resolve can be used.
Same as the async resolve, just uses sync methods.
Additionally, options supported by node-resolve can be used.
you can resolve files like require.resolve():
var bresolve = require('browser-resolve');
bresolve('../', { filename: __filename }, function(err, path) {
console.log(path);
});
$ node example/resolve.js
/home/substack/projects/browser-resolve/index.js
By default, core modules (http, dgram, etc) will return their same name as the path. If you want to have specific paths returned, specify a modules property in the options object.
var shims = {
http: '/your/path/to/http.js'
};
var bresolve = require('browser-resolve');
bresolve('http', { modules: shims }, function(err, path) {
console.log(path);
});
$ node example/builtin.js
/home/substack/projects/browser-resolve/builtin/http.js
browser-specific versions of modules
{
"name": "custom",
"version": "0.0.0",
"browser": {
"./main.js": "custom.js"
}
}
var bresolve = require('browser-resolve');
var parent = { filename: __dirname + '/custom/file.js' };
bresolve('./main.js', parent, function(err, path) {
console.log(path);
});
$ node example/custom.js
/home/substack/projects/browser-resolve/example/custom/custom.js
You can use different package.json properties for the resolution, if you want to allow packages to target different environments for example:
{
"browser": { "./main.js": "custom.js" },
"chromeapp": { "./main.js": "custom-chromeapp.js" }
}
var bresolve = require('browser-resolve');
var parent = { filename: __dirname + '/custom/file.js', browser: 'chromeapp' };
bresolve('./main.js', parent, function(err, path) {
console.log(path);
});
$ node example/custom.js
/home/substack/projects/browser-resolve/example/custom/custom-chromeapp.js
You can skip over dependencies by setting a
browser field
value to false:
{
"name": "skip",
"version": "0.0.0",
"browser": {
"tar": false
}
}
This is handy if you have code like:
var tar = require('tar');
exports.add = function (a, b) {
return a + b;
};
exports.parse = function () {
return tar.Parse();
};
so that require('tar') will just return {} in the browser because you don't
intend to support the .parse() export in a browser environment.
var bresolve = require('browser-resolve');
var parent = { filename: __dirname + '/skip/main.js' };
bresolve('tar', parent, function(err, path) {
console.log(path);
});
$ node example/skip.js
/home/substack/projects/browser-resolve/empty.js
MIT
Prior to v1.x this library provided shims for node core modules. These have since been removed. If you want to have alternative core modules provided, use the modules option when calling bresolve().
This was done to allow package managers to choose which shims they want to use without browser-resolve being the central point of update.
Similar to browser-resolve, the 'resolve' package is a module resolution library for Node.js, mimicking Node's require/resolution mechanism. The key difference is that 'resolve' focuses on Node.js environments, while 'browser-resolve' targets browser environments, taking into account browser-specific fields in package.json.
Webpack is a powerful module bundler that can resolve dependencies and modules for browser environments. Unlike browser-resolve, which is a simple resolution library, webpack offers a wide range of features including bundling, minification, and plugin support. Webpack's resolution mechanism is more complex and configurable, designed for comprehensive build processes.
Browserify is a tool that allows developers to use Node.js-style modules in the browser. It resolves dependencies and bundles modules together. While browser-resolve provides the resolution logic similar to what Browserify uses under the hood, Browserify offers a complete bundling solution, transforming Node.js modules so they can run in the browser.
FAQs
resolve which handles browser field support in package.json
The npm package browser-resolve receives a total of 4,547,353 weekly downloads. As such, browser-resolve popularity was classified as popular.
We found that browser-resolve demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 40 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
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.