# node-version **Repository Path**: mirrors_defunctzombie/node-version ## Basic Information - **Project Name**: node-version - **Description**: Get NodeJS current version - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Node-version A quick module that returns current node version parsed into parts. ## Installation ```shell npm install node-version ``` ## Quick Start ```js 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' } */ ```