Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Require different values in a web browser.
This module allows you to explicitly load different modules on the client than on the server without the need for aliasing. You can point to polyfilled globals, custom objects or functions or nothing at all. Subsequently, Browserify will be "tricked" out of bundling the original module, keeping your file size small.
Node.js >= 4
is required. To install, type this at the command line:
npm install broquire
broquire(id[, browserValue])
In Node.js, the return value is always identical to regular require
.
In a web browser, an empty Object
will be returned if no browserValue
is given:
var broquire = require("broquire")(require);
var utilities = broquire("./utils");
if (utilities.cleanup === undefined) utilities.cleanup = function(){};
If an Object
is passed, then it will be returned:
var broquire = require("broquire")(require);
var utilities = broquire("./utils", { cleanup:function(){} });
If a String
is given, then window[browserValue]
will be returned:
var broquire = require("broquire")(require);
var URL = broquire("whatwg-url", "window").URL;
broquire.isBrowser
Has a value of true
when running in a web browser, and false
when running in Node.js
broquire.isServer
Has a value of true
when running in Node.js, and false
when running in a web browser.
Why do I need to pass require
in to this function?
Every time Node.js executes a file, it gives you a version of require
that will resolve modules relative to that file and directory. Passing your require
to broquire
allows it to import modules exactly as you would with a regular require statement.
FAQs
Require different values in a web browser.
The npm package broquire receives a total of 6 weekly downloads. As such, broquire popularity was classified as not popular.
We found that broquire demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
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.