How to know if node version you are using is LTS release
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
Leave a comment