Ask HN: What is the best alternative to Angular JavaScript framework?
51–60 of 64 posts
Re: Ask HN: What is the best alternative to Angular JavaScript framework?
#52I really like KnockoutJS, having used it on multiple projects, both personal and professional. Many will say that it can't really be apples-to-apples compared with Angular since it's technically MVVM, it lacks many of Angular's features, like dependency injection etc. etc. And that's all true. But, the end result for me is that I'm able to rapidly build sophisticated client apps. I'd have to dig up the links, but the…
If you want a modern ES5 alternative there's also Vue.js
Re: Ask HN: What is the best alternative to Angular JavaScript framework?
#53Note that the weird direction is not final yet - Angular 2.0 is still a ways off, you don't actually have to use AtScript to build your applications (ES6, ES6 + Traceur annotations, CoffeeScript, Dart, AtScript should all work), and the funky HTML attribute syntax is still under debate because most browsers don't actually support .setAttribute() with bracketed attribute names. Besides, 1.x works and will keep functio…
I disagree with pretty much everything you've said here!
Re: Ask HN: What is the best alternative to Angular JavaScript framework?
#54Not using client-side scripting
Personally, I have had great experiences building purely client-side rendered apps, with DB and other APIs exposed to the client via REST. I now consider HTML generation on the server (with separate rendering logic from the client) to be an antipattern -- done right, the same rendering logic should be usable on the client and server, and can prevent whole classes of bugs and frustration.
Re: Ask HN: What is the best alternative to Angular JavaScript framework?
#55https://github.com/kirillrdy/nadeshiko
Re: Ask HN: What is the best alternative to Angular JavaScript framework?
#56I really like KnockoutJS, having used it on multiple projects, both personal and professional. Many will say that it can't really be apples-to-apples compared with Angular since it's technically MVVM, it lacks many of Angular's features, like dependency injection etc. etc. And that's all true. But, the end result for me is that I'm able to rapidly build sophisticated client apps. I'd have to dig up the links, but the…
Re: Ask HN: What is the best alternative to Angular JavaScript framework?
#57Note that the weird direction is not final yet - Angular 2.0 is still a ways off, you don't actually have to use AtScript to build your applications (ES6, ES6 + Traceur annotations, CoffeeScript, Dart, AtScript should all work), and the funky HTML attribute syntax is still under debate because most browsers don't actually support .setAttribute() with bracketed attribute names. Besides, 1.x works and will keep functio…
Thats exactly what you DONT want to do. "hold out, use angular for the time being" Once 2.0's released we can all just spend the next 6 months rewriting our entire application so it works again! I disagree with pretty much everything you've said here!
Re: Ask HN: What is the best alternative to Angular JavaScript framework?
#58Re: Ask HN: What is the best alternative to Angular JavaScript framework?
#59Not using client-side scripting
You don't have a choice when, let's say, you're building a mobile app for a service whose back-end you don't control.