Earlier quoted context omitted.
Rather depends on how they're measuring "code quality". A very brief search didn't turn up any specific description of their metric. If it's simply, say, "number of issues", or even something like "average age of open issues", then an actively used lib like Angular or React is likely to have "less quality" simply because more people have been using it and filing issues over time.
lumnify describes the criteria[1] but is incredibly vague about it. unless/until they give detailed reports on each project explaining how they arrived at their conclusions I think it's fair to treat these grades as pulled out of thin air. and even then it would be of very little/probably still no value. every project is different and you need to evaluate your tooling based on the situation. 1. https://lumnify.com/gr…
Opinionated Comparison of React, Angular2, and Aurelia
11–20 of 169 posts
Re: Opinionated Comparison of React, Angular2, and Aurelia
#12I hope he gives Vuejs a try. As a javascript beginner, who tried Angular, Angular2, A bit of React and VueJS, I just loved the flexibility and approach of VueJS. I was instantly productive thanks to the amazing documentation and vue-cli that just worked out of the box setting up my project.
PS: Never really spent much time on React as I tried it after VueJS and did not feel like proceeding much further with my tests.
Re: Opinionated Comparison of React, Angular2, and Aurelia
#13Earlier quoted context omitted.
lumnify describes the criteria[1] but is incredibly vague about it. unless/until they give detailed reports on each project explaining how they arrived at their conclusions I think it's fair to treat these grades as pulled out of thin air. and even then it would be of very little/probably still no value. every project is different and you need to evaluate your tooling based on the situation. 1. https://lumnify.com/gr…
They are not pulled out of thin air. You should contact them, and they will come with an answer. The algorithms have been tuned based on feedback from a number of Start Ups in Sydney.
Re: Opinionated Comparison of React, Angular2, and Aurelia
#14Re: Opinionated Comparison of React, Angular2, and Aurelia
#15Re: Opinionated Comparison of React, Angular2, and Aurelia
#16I would love to hear how people solve the snackbar problem in React. I don't even see how you would solve it with redux since that's just the state.
Re: Opinionated Comparison of React, Angular2, and Aurelia
#17That's wrong. You can split the routing configuration just like in react-router or Aurelia. It also supports lazy loading of child routes and components. So you don't have one giant application to serve at bootup time. It is also documented really well: https://angular.io/docs/ts/latest/guide/ngmodule.html#!#lazy...
Re: Opinionated Comparison of React, Angular2, and Aurelia
#18Regarding the Angular DI part: You don't need "provides" anymore on each component, afaik it's even deprecated. You just need to define it once on the module that defines the DI providers. And in the module of the component import that module. But your findings may already have been from some time ago where things were different in Angular land. That's for me the saddest story of Angular 2: Between alpha, beta, RC an…
No, it's not. You use providers on a component when you want to have a new instance of that Service when a new Component instance of that type gets created. So you have complete control over the DI. More details here: https://angular.io/docs/ts/latest/guide/dependency-injection...
Re: Opinionated Comparison of React, Angular2, and Aurelia
#19What is the story that FP folks need to tell here, so that people don't do things like this?