noddy
noddy
is a Node.js package which allows to parse process.version
string into
major, minor and patch numbers, and compare a specific version with the current
one.
npm i noddy
ES5
The package uses some newer language features. For your convenience, it's been transpiled to be compatible with Node 4. You can use the following snippet.
const noddy =
API
The package provides a set of functions.
noddy.parseVersion(version?: string): { major: number, minor: number, patch: number }
Call parseVersion
to extract the version object from the version string.
Don't pass an argument to parse the current Node.js version.
const parseVersion = // { major: 8, minor: 9, patch: 3 } // { major: 5, minor: 10, patch: 0 }
noddy.nodeGt(version?: string): boolean
Check if the current Node.js version is greater than the specified one.
const nodeGt = processversion // v8.9.3 // true // false // false
noddy.nodeGte(version?: string): boolean
Check if the current Node.js version is greater than or equal to the specified one.
const nodeGte = processversion // v8.9.3 // true // true // false
noddy.nodeLt(version?: string): boolean
Check if the current Node.js version is less than the specified one.
const nodeLt = processversion // v8.9.3 // false // false // true
noddy.nodeLte(version?: string): boolean
Check if the current Node.js version is less than or equal to the specified one.
const nodeLte = processversion // v8.9.3 // false // true // true
(c) sobes.io 2018