Socket
Socket
Sign inDemoInstall

node-version

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    node-version

Get NodeJS current version


Version published
Weekly downloads
457K
increased by1.56%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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

Dependency Status devDependency Status Greenkeeper badge

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');

Keywords

FAQs

Last updated on 21 Mar 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc