
Product
Socket Now Protects the Firefox Extension Ecosystem
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.
multi-tool
Advanced tools
$ npm install --save multi-tool
const install = require('multi-tool');
const install0230 = await install('ramda', '0.23.0'); // 'ramda@0.23.0'
const ramda0230 = require('ramda@0.23.0');
ramda0230.identity(0);
const install023x = await install('ramda', '0.23.x'); // 'ramda@0.23.x'
const ramda023x = require('ramda@0.23.x');
ramda023x.identity(0);
const installLatest = await install('ramda', 'latest'); // 'ramda@latest'
const ramdaLatest = require('ramda@latest');
ramdaLatest.identity(0);
const installInvalidPackage = await install('does-not-exist', 'latest'); // ''
const installInvalidVersion = await install('ramda', '99.99.99'); // ''
PROTIP: Any valid semver range that is also a valid (Li|U)nix directory name is supported.
FAQs
Install and require multiple simultaneous versions of any NPM package
The npm package multi-tool receives a total of 2 weekly downloads. As such, multi-tool popularity was classified as not popular.
We found that multi-tool 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.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.

Research
/Security News
Three compromised Rust crates pulled in a malicious dependency that downloaded and executed cross-platform malware during Cargo builds.

Research
/Security News
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.