Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular 2 V/S Angular js V/S React js v/s Typescript [closed]

I am a simple and newbie web developer. I am going to create a simple website for my own use.

As a newbie web developer i know only very few concepts of JavaScript and jQuery.

For building my website i thought let's build with some new concepts.

So when i started searching i got to know lots of new libraries like AngularJS, Angular 2, TypeScript, React.js and Node.js. whewww...

So I want to ask a simple question, what are all these libraries?

Is there any difference between Angular 2 Angular Connect AngularJS AngularJS?

I know that React.js is created by Facebook and AngularJS is created by Google.

I don't want to create the comparison between all this libraries. But want to understand all this concepts in single page with clear answer.

As a web developer I just want to know what all this things are?

Please just help me to make all this Terms simple. And please let me know what each library provides?

like image 683
Nirav Kamani Avatar asked Oct 23 '15 10:10

Nirav Kamani


People also ask

Is Angular close to React?

Is Angular better than React? Angular is better than React if your application is enterprise-grade and you need to incorporate complex functionalities like progressive, single-page, and native web apps. However, React specializes in creating UI components and can be used in any application, including single-page apps.

Is AngularJS better than ReactJs?

React js vs Angular which is better, React Js is easy to understand and execute but on the other hand, AngularJs is difficult due to third-party syntax and libraries. When using react js vs angular, ReactJs is on Open Source Framework while AngularJs is on MVC framework.

What is faster Angular or React?

Angular's utilization of a Regular DOM causes potential performance issues, especially with many UI elements and web page information. In short, React's Virtual DOM is regarded as considerably faster than Angular's Regular DOM due to more efficient state changing and Virtual Tree updating.

Is React killing Angular?

Even if it looks like Angular is dying because of React, it's not.


1 Answers

Angular 2 V/S Angular js V/S React js v/s Typescript

First angular 2 vs. angular 1

  • Angular 2 : its the next version of angular ... currently under active development. It is being rewritten in TypeScript https://angular.io/

  • Angular 1 : Its the current version of angular : https://angularjs.org/

Now angular vs. react

  • Angular is a full featured framework (e.g. http routing is baked in). React is just the view with people providing the other libraries (like http routing).

Finally TypeScript : Its just a programming language that transpiles to JavaScript and can therefore be used with any of these frameworks.

like image 163
basarat Avatar answered Oct 23 '22 12:10

basarat