DEV Community

Discussion on: Any good Frontend Frameworks

Collapse
 
stargator profile image
Stargator

My team is in the midst of wrapping up a port from the AngularJS framework to AngularDart.

We started out with AngularJS because we inherited it from the people who worked on the project before and we were all familiar with Angular's data model already.

AngularDart shares the same concepts as AngularJS, it's just implemented using a different language.

Angular has a lot of cool concepts like these:

  • Data binding
  • Template & Modular component development for UI
  • Dependency Injection
  • Able to update one component UI without refreshing the rest of the UI displayed.

It's easy to see how popular it is since Angular has implemented in TypeScript and Dart since Angular JS started to get replaced by new version re-wrote the architecture of the framework.

I would recommend it for small to enterprise software solutions.