Manos Serifios
Manos Serifios

Reputation: 577

What do i need for Ionic 2 - Anjular 2 or Typescript

I am a front end developer and i need to develop hybrid mobile applications using Ionic 2 Framework.

I tried to understand what i am going to need between Typescript and AnjularJS.

Do i need one of these or both?

Upvotes: 1

Views: 196

Answers (2)

Sampath
Sampath

Reputation: 65958

Yes, Ionic2 has been developed on top of Angular and Typescript.So you have to learn both and also Ionic2 :).But if you know Javascript then Typescript is nothing.You can learn advanced stuff when you're developing your own apps (me myself doing it in that way right now :)).So you just need to get the basic knowledge only.Ionic2 is also very easy to learn.No need to tell about Angular.It's super easy to learn when compared to the AngularJs 1.X.

So why you're waiting? Let's start.Good Luck!

Ionic2 : Beginners Guide Ionic2

Typescript : Learn TypeScript in 30 Minutes (see I told you no :))

Angular : Guide for Beginners

Upvotes: 2

Pramod_Para
Pramod_Para

Reputation: 681

If you have done any research in typescript, it basically is a superset of javascript. It means it contains everything javascript contains.The Ionic CLI supports generating both TypeScript and ES6 projects. Fortunately, the CLI handles all of the setup required to run both types of projects so there’s no heavy lifting required on the users end here.Types are pretty much the whole point of using TypeScript over ES6. The syntax differences aren’t huge and you should pretty easily be able to convert from one to the other.

Upvotes: 2

Related Questions