Reputation: 272
I am a sails.js user and I want to know what involves a migration for a previous version of node.js to v4 version : I know and read about new features like promises ,etc but I would know if even I could use features later, if my project could work or if there are things I'm forced to change?
For sails.js or a simple node.js project ( I don't know for sail.js , I saw no doc about this)
Upvotes: 2
Views: 240
Reputation: 2051
The answer is not exact, because your question is to broad. I'll try to answer as objective as possible. The only way to answer is use it and see is there any feature that breaks. Maybe this points can help you:
ES6 is backward compatible with ES5, so there are less things to worry about. And for your convenient, if you work on Linux based host, use Node.js version manager like nvm
, so you will be easy to switch between any Node.js version.
Upvotes: 1