Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular and Angular Dart - which framework is recommended for the web development? [duplicate]

I am little bit confused about the difference between the latest Angular version and Angular Dart. Looks like both have same syntax and implementation style. So what is the intention behind the google for a new framework? I think it makes too confusion to outside. As per Angular Dart documentation

AngularDart is a web app framework that focuses on productivity, performance, and stability

From my understanding Angular also offering the same for the web development and mainly focus on performance.

Can anyone help me understand- When to use Angular Dart and Angular? There is one link I saw from stack overflow which is comparing to Angular js

Differences between Angular.js and Angular.dart?

like image 831
Jameel Moideen Avatar asked Jan 25 '18 16:01

Jameel Moideen


People also ask

What is angular web development and is it a good choice?

Angular is a good choice if you are looking for a solid web development framework because it has several cutting-edge capabilities. Now that you know what Angular web development is and what it does, let’s look at some of its features and why it’s a good fit for your development projects.

Should I use typescript or angular dart for large scale web development?

Angular Dart has some notable advantages for building large scale web applications because it has a stronger type system (your mileage might vary depending on your preferences). If you depend on 3rd party components, then the TypeScript flavor has probably more to offer for you.

What is Angular framework?

What is Angular Framework? Angular programming language, usually referred to as Angular 2+ or Angular v2, is a TypeScript-based web application framework. With its introduction, it is an open-source that is an absolute rewrite from the same Google Angular Team that developed AngularJS.

Can I use third party components with AngularDart?

For example 3rd party components work only with the flavor they are built for. If you're into Dart, for example because you already built a mobile app using Flutter, then you probably want to reuse bigger parts of the code for the web version of your app. This works well with AngularDart.


1 Answers

There is no general answer. It mostly depends on your requirements and preferences.

An attempt:

If you want to use the Dart language, then you probably also want to use the Dart flavor of Angular, otherwise probably rather the TypeScript flavor.

The two versions are diverging notably since they were split and developed independently in May 2016.

There is nothing shared between these versions. For example 3rd party components work only with the flavor they are built for.

If you're into Dart, for example because you already built a mobile app using Flutter, then you probably want to reuse bigger parts of the code for the web version of your app. This works well with AngularDart.

If this is not the case you probably want to use the TypeScript version.

Angular Dart has some notable advantages for building large scale web applications because it has a stronger type system (your mileage might vary depending on your preferences). If you depend on 3rd party components, then the TypeScript flavor has probably more to offer for you. The Dart community is still small compared to the TypeScript community.

like image 152
Günter Zöchbauer Avatar answered Nov 13 '22 20:11

Günter Zöchbauer