Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
"Node.JS Package Multiple Version Installer" A command tool, which allows you to install multiple versions for the same package in a project.
Node.JS Package Multiple Version Installer is a command tool, which allows you to install multiple versions for the same package in a project.
NPMVI is NOT a replacement for NPM
$ npm install -g npmvi
$ cd ~/your_project
$ npmvi install express@3.0.0
$ npmvi install express@4.0.0
It's like the npm install
command but it's used to install multi-version
$ cd ~/your_project
$ npmvi install
var express3NpmviObject = require('@npmvi/express-3.0.0');
var express4NpmviObject = require('@npmvi/express-4.0.0');
express3NpmviObject.index; // the original express3 module entrance
express3NpmviObject.name; // express
express3NpmviObject.version; // 3.0.0
express3NpmviObject.packageJSON; // express3 package.json
express3NpmviObject.isNPMVI; // true
express4NpmviObject.index; // the original express4 module entrance
express4NpmviObject.name; // express
express4NpmviObject.version; // 4.0.0
express4NpmviObject.packageJSON; // express4 package.json
express4NpmviObject.isNPMVI; // true
$ cd ~/your_project
$ npmvi remove express@3.0.0
$ npmvi remove express@4.0.0
FAQs
"Node.JS Package Multiple Version Installer" A command tool, which allows you to install multiple versions for the same package in a project.
We found that npmvi 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.