Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Check installed node version against a requested version using an comparison operator. The main purpose of this script is make it easier to only run scripts if the node version is correct. This is meant to be simple and have zero dependencies, so that it will be very exportable and versatile.
npm install if-ver --save-dev
yarn add if-ver --dev
if-ver [comparison-operator] [semantic-version]
"scripts": {
"test": "if-ver -gt 4 || exit 0; run-node-4-thing"
}
Similar to the bash comparision operators:
Only run eslint if node version is at least 4 (else do nothing):
"scripts": {
"lint": "if-ver -gt 4 || exit 0; eslint *.js"
}
Only compile typescript if node version is at least 4.2 (else do nothing):
"scripts": {
"build": "if-ver -gt 4.2 || exit 0; tsc"
}
Only run webpack if node version is (>= 4.3 && <5) || > 5.10 (else do nothing):
"scripts": {
"build": "(if-ver -ge 4.3 && if-ver -lt 5) || if-ver -gt 5.10 || exit 0; webpack"
}
Only run rollup if node version is >= 0.12 (else do nothing):
"scripts": {
"build": "if-ver -ge 0.12 || exit 0; rollup -c"
}
FAQs
simple if-version check for node
The npm package if-ver receives a total of 1,989 weekly downloads. As such, if-ver popularity was classified as popular.
We found that if-ver 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.