
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.
browserify-mockify
Advanced tools
Allows you to mock browserify modules for unit tests. If you transform your unit tests with browserify, you may need to mock certain modules (this helps with code coverage too).
npm install browserify-mockify
In your browserify task, add
var mockify = require('browserify-mockify');
var b = browserify();
b.transform(mockify.transform());
If you have any other transforms, pass each transform you use as arguments into mockify.transform. For example, if you were to use reactify -
b.transform(reactify);
b.transform(mockify.transform(reactify));
Using mockify.mock allows you to mock the modules you need. The first parameter should be the path relative to the module you are going to require (it should match the require path in the required module).
The second parameter can be whatever - this is what is returned instead of the actual module.
mockify.mock('./moduleB', {
hello: function () {
}
});
Replace any require calls that contains modules that you want to mock with mockify calls instead.
For example,
var module = require('./module');
Would become
var module = mockify('./module');
Your module.js file should look like
var moduleB = require('./moduleB');
When you run this normally in browserify, you will get moduleB returned. However, as you've defined a moduleB mock above, the object is returned when you run it in your tests.
FAQs
Mocks browserify modules for unit testing
We found that browserify-mockify 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.