node-version
Get Node current version
Last updated 6 years ago by srod .
MIT · Repository · Bugs · Original npm
$ cnpm install node-version 
SYNC missed versions from official npm registry.

NPM Version NPM Downloads Linux Build Windows Build Circle CI Build Codecov

Dependency Status devDependency Status

Node-version

A quick module that returns current node version parsed into parts.

Installation

yarn add node-version

Or

npm install node-version

Quick Start

var currentVersion = require('node-version');

/*
console.log(currentVersion);

{
    original: 'v0.4.10', // same as process.version
    short: '0.4',
    long: '0.4.10',
    major: '0',
    minor: '4',
    build: '10'
}
*/

Warning

Version 1.0.0 break 0.1.0 since its API changes.

Change

var currentVersion = new (require('node-version')).version();

To

var currentVersion = require('node-version');

Current Tags

  • 2.0.0                                ...           latest (6 years ago)

2 Versions

  • 2.0.0                                ...           6 years ago
  • 1.2.0                                ...           7 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (3)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org