Earlier quoted context omitted.
Node now follows Semver. If you look through the changelog, there's more than a dozen changes that are breaking.
That doesn't answer the question. Node 4.0 was released a month ago. Why are there so many breaking changes in 1 month?
Node.js 5.0 Released
11–20 of 132 posts
Re: Node.js 5.0 Released
#12Re: Node.js 5.0 Released
#13Earlier quoted context omitted.
Node now follows Semver. If you look through the changelog, there's more than a dozen changes that are breaking.
That doesn't answer the question. Node 4.0 was released a month ago. Why are there so many breaking changes in 1 month?
Re: Node.js 5.0 Released
#14Uhh, wait, wasn't nodejs 4.0 only like a month ago? So are there going to be breaking changes every few months now?
I'd wager that the vast majority of Node APIs currently on 4.x could swap in 5.0 without any issues.
Re: Node.js 5.0 Released
#15I recently looked at using Node for a simple API backend. ES6 seems like it's not there yet, the stability of Node makes me wary. Constant changes seem exhausting to keep up with. For a simple microservice api you don't want to be upgrading it every 3 days. The continuous change doesn't make sense to me. Trying to get up to speed on all the Node.js ecosystem feels exhausting, only to have it change a few weeks later.…
Plus you don't have to always upgrade to latest and greatest. If your app works fine in 4.2 and there's no crazy security issues you need to upgrade for, don't. 4.2 is LTS so it's going to get supported for a long time.
Re: Node.js 5.0 Released
#16Glad to see they've bumped up the V8 version so the spread operator can be used. Things are really moving along at a good clip since the merge with io.js.
Re: Node.js 5.0 Released
#17I recently looked at using Node for a simple API backend. ES6 seems like it's not there yet, the stability of Node makes me wary. Constant changes seem exhausting to keep up with. For a simple microservice api you don't want to be upgrading it every 3 days. The continuous change doesn't make sense to me. Trying to get up to speed on all the Node.js ecosystem feels exhausting, only to have it change a few weeks later.…
Re: Node.js 5.0 Released
#18Earlier quoted context omitted.
Node now follows Semver. If you look through the changelog, there's more than a dozen changes that are breaking.
That doesn't answer the question. Node 4.0 was released a month ago. Why are there so many breaking changes in 1 month?
Really what has happened is that v4 was a bit behind, and v5 is right on schedule which is why it seems to be changing so fast.
Re: Node.js 5.0 Released
#19I recently looked at using Node for a simple API backend. ES6 seems like it's not there yet, the stability of Node makes me wary. Constant changes seem exhausting to keep up with. For a simple microservice api you don't want to be upgrading it every 3 days. The continuous change doesn't make sense to me. Trying to get up to speed on all the Node.js ecosystem feels exhausting, only to have it change a few weeks later.…
Re: Node.js 5.0 Released
#20I recently looked at using Node for a simple API backend. ES6 seems like it's not there yet, the stability of Node makes me wary. Constant changes seem exhausting to keep up with. For a simple microservice api you don't want to be upgrading it every 3 days. The continuous change doesn't make sense to me. Trying to get up to speed on all the Node.js ecosystem feels exhausting, only to have it change a few weeks later.…
I have a built a small API using express and passport and so far these node changes have not impacted my code.
Another option for fast API development is Java 8 with SpringBoot and Jetty. People hate on Java and Spring, but the latest versions of both are very powerful and easy to get going. If you end up needing more it is there.