
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
try-require
Advanced tools
try/require mechanism to conditionally load a module using require.
npm install try-require --save
try-require lets you try to require a module and not fail if the module is not installed. You could do this inline but the try/catch block will prevent V8 from optimizing your entire function. Therefore, making try-require standalone means only this module is not optimizable.
Sometimes you don't need to load the module, just determine if it is available.
For this, a resolve function is provided with `try-require.``
// Conditionally require a module
var tryRequire = require('try-require');
var maybe = tryRequire('maybeModule');
// If `maybeModule` is not available, then `maybe` will
// be undefined. If available it is equivalent to:
// var maybe = require('maybeModule');
// Determine if a module is available without loading it into memory
var tryRequire = require('try-require');
var maybePath = tryRequire.resolve('maybeModule');
// If available, maybePath holds the path to the module
// and the module is not loaded. If `maybeModule` is not available,
// then `maybePath` will be undefined.
Optionally, check require and resolution exceptions with lastError. Note that lastError will return null if no error has ever been triggered, or if the most recent call to require or resolve was successful.
var tryRequire = require('try-require');
var maybe = tryRequire('notAModule');
console.error( tryRequire.lastError() );
Note that both tryRequire and tryRequire.resolve accept an optional second argument if you want to provide your own version of require.
If you would like to add to this library, please ensure that all existing test cases pass and that all new code has proper test coverage in test/all.test.js.
To run tests, simply execute:
npm test
Also, match styles within the project where language of the file allows. Some core styles to follow are:
MIT
FAQs
Conditional load modules.
We found that try-require 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.