VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-process-version-property/

⇱ Node.js process.version Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js process.version Property

Last Updated : 12 Oct, 2021
The process.version property is an inbuilt application programming interface of the Process module which is used to check the node.js version. Syntax:
process.version
Return: It returns a string signifying the version of the Node.js. Below examples illustrate the use of process.version property in Node.js: Example 1: Output:
node.js version v10.16.0
Example 2: Output:
node.js version v10.16.0
Node.js version name: Dubnium
Reference: https://nodejs.org/api/process.html#process_process_version
Comment

Explore