Criticisms of Angular
leanpanda.com
Criticisms of Angular
1–10 of 150 posts
Re: Criticisms of Angular
#2Re: Criticisms of Angular
#3How can you take the article seriously with that kind of conclusion.
Re: Criticisms of Angular
#4When the author doesn't understand the difference between a module system and a dependency injection system, it's hard to take the rest of what he says seriously.
Re: Criticisms of Angular
#5When the author doesn't understand the difference between a module system and a dependency injection system, it's hard to take the rest of what he says seriously.
They kind of solve the same problem, but in different ways. I, for one, think it's debatable if the 800 lb gorilla that is dependency injection has any merit in javascript.
Re: Criticisms of Angular
#6When the author doesn't understand the difference between a module system and a dependency injection system, it's hard to take the rest of what he says seriously.
They kind of solve the same problem, but in different ways. I, for one, think it's debatable if the 800 lb gorilla that is dependency injection has any merit in javascript.
Re: Criticisms of Angular
#7Earlier quoted context omitted.
They kind of solve the same problem, but in different ways. I, for one, think it's debatable if the 800 lb gorilla that is dependency injection has any merit in javascript.
DI is not an "800 lb gorilla". If anything, certain implementations of DI frameworks are (I'm looking at you, Spring).
Re: Criticisms of Angular
#8"With the next article we’re going to introduce you to React JS, [...] that have won us over entirely." How can you take the article seriously with that kind of conclusion.
Re: Criticisms of Angular
#9Earlier quoted context omitted.
They kind of solve the same problem, but in different ways. I, for one, think it's debatable if the 800 lb gorilla that is dependency injection has any merit in javascript.
I like Angular's DI. It makes it easy – to me, but YMMV - to organize my thoughts and my code.
I generally don't like too much structure unless there are clear benefits and DI doesn't seem to hold up on that scale. The problem it's solving has traditionally been solved with a dozen global variables. And while the purists may scuff at this, I find that in practise it's never an issue in otherwise well structured code.