nodejs-latest
v1.1.0
Published
Get the latest (LTS) node.js version and versions of its modules.
Downloads
578
Readme
nodejs-latest
Get the version of latest (LTS) node.js and versions of its modules.
Install
npm install nodejs-latest
Usage
const { latest, latestLTS } = require('nodejs-latest')
latest().then(console.log)
// =>
// { version: '6.4.0',
// npm: '3.10.3',
// v8: '5.0.71.60',
// uv: '1.9.1',
// zlib: '1.2.8',
// openssl: '1.0.2h',
// modules: '48',
// lts: false }
latestLTS().then(console.log)
// =>
// { version: '4.5.0',
// npm: '2.15.9',
// v8: '4.5.103.37',
// uv: '1.9.1',
// zlib: '1.2.8',
// openssl: '1.0.2h',
// modules: '46',
// lts: 'Argon' }
API
latest
Get the version of latest node.js and versions of its modules, return a Promise
.
latestLTS
Get the version of latest LTS node.js and versions of its modules, return a Promise
.