Live data from Hacker News

Version 6 of Angular Now Available

blog.angular.io

1–10 of 86 posts

Re: Version 6 of Angular Now Available

#3
Beware that new @angular/cli@6.0.0 doesn't support universal node packages that are using fs/net/stream depending on the environment

(e.g. using fs.readFile() when running in Node, while using window.fetch() when running in a browser.)

It seems that Angular team made a decision to not have out-of-the-box support for projects using such packages even in the future [1].

[1] https://github.com/angular/angular-cli/issues/9827#issuecomm...

Re: Version 6 of Angular Now Available

#8
What is the backwards compatibility and support model for Angular? I just don't have time to chase after things that move this quickly, not and fulfill all my other responsibilities. I'm supporting a mature application that has a front-end started less than eighteen months ago with AngularJS. Maintenance and support on third-party components we use is already starting to dry up. Rewriting things every six months is not reasonable for our team, much as we really ought to stay up to date.

I suppose we'll muddle along until things really break down, but this pace of change is not sustainable, particularly when so much of it just seems like churn for churn's sake.

Re: Version 6 of Angular Now Available

#10
post #3

Beware that new @angular/cli@6.0.0 doesn't support universal node packages that are using fs/net/stream depending on the environment (e.g. using fs.readFile() when running in Node, while using window.fetch() when running in a browser.) It seems that Angular team made a decision to not have out-of-the-box support for projects using such packages even in the future [1]. [1] https://github.com/angular/angular-cli/issues…

Makes perfect sense to me.
Post reply on HN