How to know if node version you are using is LTS release

less than 1 minute read

Developers can easily determine if they are working with an LTS version of Node.js by checking the process.release.lts property within node. This property will be undefined in regular releases.

$ node -v
v4.2.0
$ node -pe process.release.lts
Argon

Reference: https://nodejs.org/en/blog/release/v4.2.0/#argon

Categories:

Updated:

Leave a comment