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

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

As a newbie web developer, I only know very few JavaScript and jQuery concepts.

To create my website, I thought that let's build new concepts.

So, when I started searching, I met many new libraries, such as AngularJS, Angular 2, TypeScript, React.js and Node.js. whewww ...

So, I want to ask a simple question, what are 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 do not want to create a comparison between all these libraries. But you want to understand all these concepts on one page with a clear answer.

As a web developer, I just want to know what all this is?

Please just help me make all of these Terms simple. And please let me know what each library provides.

+7
angularjs angular reactjs typescript
source share
2 answers

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

First Angular 2 vs Angular 1

Now angular is against reaction

  • Angular is a full-featured framework (e.g. http routing). A reaction is simply the opinion of people providing other libraries (e.g. http routing).

Finally TypeScript: it's just a programming language that translates to JavaScript and therefore can be used with any of these frameworks.

+7
source share

Typescript is not a library, it is a language that compiles into Javascript, allows static input, and some other things, such as writing ES6 and compiling it to ES5.

The important thing about Typescript is that any Javascript code is valid Typescript. This is a superset of JS, it means that it just adds JS functions, but keeps all compatible.

It is compatible with each of the three libraries.

+1
source share

All Articles