Gathering detailed insights and metrics for node-semvers
Gathering detailed insights and metrics for node-semvers
Gathering detailed insights and metrics for node-semvers
Gathering detailed insights and metrics for node-semvers
Resolves individual and ranges for versions of Node.js by version numbers, version names, codenames, and expressions.
npm install node-semvers
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (97.67%)
JavaScript (2.33%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
299 Commits
2 Watchers
45 Branches
1 Contributors
Updated on Jul 15, 2025
Latest Version
1.5.4
Package Id
node-semvers@1.5.4
Unpacked Size
102.44 kB
Size
20.73 kB
File Count
113
NPM Version
11.4.2
Node Version
24.3.0
Published on
Jul 08, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
4
7
Resolves individual and ranges for versions of Node.js by version numbers, version names, codenames, and expressions.
Follows a similar convention to nave with the addition of semver expressions:
- x.y.z A specific SemVer tuple
- x.y Major and minor version number
- x Just a major version number
- lts The most recent LTS (long-term support) node version
- lts/<name> The latest in a named LTS set. (argon, boron, etc.)
- lts/* Same as just "lts"
- latest The most recent (non-LTS) version
- stable Backwards-compatible alias for "lts".
- [expression] Engine and semver module expression like "10.1.x || >=12.0.0"
Usage:
var assert = require('assert')
var NodeVersions = require('node-semvers')
NodeVersions.load(function (err, semvers) {
var version = semvers.resolve('lts');
assert.equal(version, 'v12.14.0');
});
const semvers = await NodeVersions.load()
const versions = semvers.resolve('10.0.0 || ~12.0.0');
assert.deepEqual(versions, ['v10.0.0', 'v12.0.0']);
No vulnerabilities found.
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More