Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Node.js Versions: Recommended vs Current? [duplicate]

Tags:

node.js

On the Node.js website, they list two versions, where one is the latest, and the other is the recommended (currently 6.3.0 and 4.4.7).

What is the difference between these two versions, and is the latest version stable enough for production applications?

like image 532
Tarek Avatar asked Jul 17 '16 02:07

Tarek


1 Answers

Both are considered stable, as far as reliability goes.

The later builds may use features and APIs that may change. When they refer to stability in the 6.x branch, they're referring to API stability. That is, you might write code that works on 6.3, but it might break in 6.4 due to some minor changes.

You can read more here: https://github.com/nodejs/LTS#lts_schedule

like image 51
Brad Avatar answered Nov 01 '22 20:11

Brad