
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
global-wrap
Advanced tools
This library will bundle up your CommonJS code and expose it as a property of the global object. It does so using browserify, so everything ends up in one file, even any native module shims you depend on.
In essence, this is a lighter-weight alternative to browserify's built-in standalone option; it only generates the global, omitting AMD support, and boils down the API into just what's necessary to complete this one task.
This package's main module's default export is a function that takes two arguments: some options, and a callback.
The options are:
main: the file path of your main module, which you want to expose as a global.global: the name of the global you want to expose.browserifyOptions: any browserify options you want to pass along, like noparse, builtins, detectGlobals, debug, etc.tmpDir: the temporary directory to use. If this option is not specified the operating system's default directory for temp files will be used.The callback will be called with either an error or a string containing JavaScript source. This JS source will, upon being loaded into a browser, create the specified global on self, whose value will be the same as if you'd done require(options.main). Thus, it's ready for inserting into your page as a <script> tag and use by other global-using scripts.
Here's an example:
var globalWrap = require("global-wrap");
globalWrap({
main: "my-library.js",
global: "myLib",
browserifyOptions: { detectGlobals: false }
}, function (err, output) {
// handle `err`, or write `output` to a `.js` file, or something.
});
FAQs
Exposes your CommonJS-based libraries as a global.
We found that global-wrap 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.