Wednesday, February 15, 2017

TypeScript Resources

Overview


TypeScript is a superset of JavaScript.  It improves upon JavaScript by adding type safety, namespaces, and scope.  You can actually rename a .js JavaScript file to .ts and it will function the same.  TypeScript will transpile into JavaScript.  TypeScript is created by the great Anders Hejlsberg who created TurboPascal, Delphi, and C#.  You will find it feels similar to C#, although the syntax is different, a lot of the concepts and keywords are the same.


Main Site

http://www.typescriptlang.org/


Try Out TypeScript online!

http://www.typescriptlang.org/play/index.html

Tutorials

https://www.tutorialspoint.com/typescript/index.htm

http://tutorialzine.com/2016/07/learn-typescript-in-30-minutes/

https://www.codeproject.com/Articles/802722/TypeScript-The-Basics

Videos/Courses


Andres Hejlsberg:  Introducing TypeScript
http://channel9.msdn.com/posts/Anders-Hejlsberg-Introducing-TypeScript

Why use TypeScript instead of just using JavaScript?
https://channel9.msdn.com/Blogs/raw-tech/Why-use-TypeScript-instead-of-just-using-JavaScript

TypeScript Jump Start
https://channel9.msdn.com/Blogs/MostafaElzoghbi/TypeScript-Jump-Start1

TypeScript: From Zero to Hero
https://channel9.msdn.com/events/TechDays/Techdays-2016-The-Netherlands/TypeScript-From-Zero-to-Hero

What's New in TypeScript
https://channel9.msdn.com/events/Build/2016/B881

Anders Hejlsberg on TypeScript 2
https://channel9.msdn.com/Blogs/Seth-Juarez/Anders-Hejlsberg-on-TypeScript-2

TypeScript Fundamentals
https://app.pluralsight.com/library/courses/typescript/table-of-contents

TypeScript and Angular 2
https://channel9.msdn.com/Events/Build/2016/TypeScript-and-Angular-2


TypeScript Definition Files

http://definitelytyped.org/

Quick References

https://www.cheatography.com/gregfinzer/cheat-sheets/typescript/
https://www.sitepen.com/blog/2013/12/31/typescript-cheat-sheet/
https://github.com/frontdevops/typescript-cheat-sheet

No comments:

Post a Comment