All Projects â†’ DavidCai1993 â†’ Nodejs Latest

DavidCai1993 / Nodejs Latest

Licence: mit
📥Get the version of latest (LTS) node.js and versions of its modules

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

nodejs-latest

js-standard-style Build Status Coverage Status

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].