SlideShare une entreprise Scribd logo
1  sur  24
TypeScript
Javascript Done Right
Wekoslav Stefanovski
      Seavus
     24.10.2012
Agenda

•   A little bit of history
•   Why is TypeScript needed – design goals
•   Using TypeScript (with Visual Studio or without)
•   TypeScript declaration
    –   Types and type annotations
    –   Classes
    –   Interfaces and structural types
    –   Modules
• Why should I use TypeScript today?
• Q&A
Who am I

            Wekoslav Stefanovski
             Senior Developer
                  Seavus

       - Javascript (ab)user since 2000
             - C# user since 2001
    - Joined the Ajax and XHR fun in 2006
 - Member of the Macedonian .NET user group
 - Co-leader of the Macedonian Visual C# user
                      group
A little bit of history

• What is this thing called Javascript???
• Prototype-based dynamic scripting language
• Build in Netscape in 1995, initially focused on
  non-professional developers.
• Created by Brendan Eich in a 10-day hack
  session.
• Standardized as ECMAScript (in 1999), still
  plenty incompatible “dialects”
• We were somewhat lucky, it could have been
  VBScript
Why is TypeScript needed?

• Javascript’s got 99 problems but types ain’t one
  –   Variable hoisting
  –   Some very idiosyncratic behaviors
  –   No explicit includes
  –   The this parameter can be actually that
  –   Abysmal debugging experience
  –   Browser DOM incompatibility is not due to Javascript
• ECMAScript 6 standard specification is a long
  way off
• Implementations are even further away
Why is TypeScript needed?

• Still people have to use it
• It’s lingua franca of the web
• People have build many great product using it:
  –   jQuery
  –   Ext JS
  –   GWT
  –   Knockout
  –   Backbone.js
  –   JSLint / JSHint
  –   Node.js
What exactly is TypeScript?

• TypeScript is a language for application-scale
  Javascript development
• TypeScript is a typed superset of JavaScript that
  compiles to plain Javascript
• Any browser. Any host. Any OS.
• Open Source
• What TypeScript does is, it basically formalizes a
  static type system that describes JavaScript's
  dynamic types, but it describes them at
  development time. (Anders Hejlsberg)
TypeScript design goals

• Extend Javascript to facilitate writing large
  applications.
• Superset of Javascript
• Development tooling support
• Compiled Javascript that runs on any Javascript
  execution environment (Chakra, V8, Node.js…)
• Start with Javascript and add things here and
  there
• Generate pretty, idiomatic Javascript
Using TypeScript

• Source file / declaration file code organization
   – .ts for source files
   – .d.ts for declaration files.
   – (analogous to .h and .cpp in C++)
• Type safety, intellisense and compile errors
• Declarations can be created for existing
  Javascript libraries
   – DOM and jQuery declarations provided with TypeScript
   – Possible to write your own for any existing Javascript
     library
Using TypeScript with Visual
Studio
• Tooling support
  –   Static type checking.
  –   Strong type inference.
  –   Symbol-based navigation.
  –   Statement completion / intellisense.
  –   Code refactoring.
• Plug-in available for download
Using TypeScript
without Visual Studio
• Support available for most popular code editors
  (Eclipse, Sublime Text, EMACS, Vim…)
• Node.js package available (typescript)
• Command line compiler (tsc).
TypeScript declaration

• Any (currently most) valid Javascript is valid
  TypeScript
• Closely aligned with existing ECMAScript 6
  proposals
TypeScript types and type
annotations
• Optional static typing
• Applied using a post-fix syntax
• Support for built-in Javascript types (number,
  string, boolean, null, undefined, void)
• Return type of the function can be inferred.
• Supports optional types via ? Operator
• Subtypes of the Any type
• Supports typed arrays
TypeScript arrow notation

• New feature planned for ECMAScript 6.
• Compact form of function expressions that omit
  the function keyword.
• Similar to lambda expressions in C#.
• Lexical scoping of this.
var messenger = {
   message: "Hello World",
   start: function() {
     setTimeout(() => { alert(this.message); }, 3000);
   }
};
messenger.start();
TypeScript interfaces and
structural types
• Designed for development tooling support only.
• Interfaces have no run-time representation - they
  are purely a compile-time construct.
• Structural type system - interfaces are
  automatically implemented by any
  object/prototype that complies structurally.
• Supports overload by parameter signature.
• Supports implementing multiple interfaces.
TypeScript classes

• Classes are alike to the proposed classes for
  ECMAScript 6.
• public or private member accessibility.
• Parameter property declarations via constructor.
• Supports single-parent inheritance.
• Derived classes make use of super calls to
  parent.
• Do not support overloads yet.
TypeScript modules

• Analogous to .NET namespaces.
• Prevents global variable naming collisions.
• Closely aligned with those proposed for
  ECMAScript 6.
• Allows hiding implementation detail
• Allows exposing a public API.
Why should I use TypeScript

• Open Source, hosted on codeplex!!!
• Tooling support, for type safety, inference and
  refactoring!!!
• Static types and compilation helps catch mistakes
  & bugs earlier!!!
• Structural interfaces & typing!!!
• Compiles to idiomatic JavaScript!!!
Why should I use TypeScript
(today)
•   Support for ECMAScript 6 today!!!
•   Works alongside existing code!!!
•   Does not hold your .js files hostage!!!
•   Anders Hejlsberg is involved!!!
Why shouldn’t I use TypeScript

• It is a remove (albeit a slight one) from the Javascript
  sources.
• Only at version 0.8 (and it shows)
• Limited availability of resources & libraries (can use any
  existing JavaScript, albeit with limited type safety and
  tooling support).
• No support for generics (yet, but is defined in spec).
• All types are nullable.
• Limited tooling support outside of Visual Studio 2012 or
  Monaco web editor.
?
Thank you for your attention.
Please rate this lecture
                                                           and WIN Windows Phone 8X
                                                                      by HTC!

 Help us choose the best Sinergija lecturer! HTC and Microsoft will award
you – at the conference end, we’ll give one HTC Windows Phone 8X
                to someone from the audience – randomly.
        Go to www.mssinergija.net , log in and cast your votes!
 You can rate only lectures that you were present at, just once. More lectures you rate, more chances you have.
 Please use computers at the front of this room, or rate lecture from your phone or home computer, at Sinergija portal.
This prize contest will end at Thursday, October 24th at 21:00. Winner will be announced at the official Sinergija web portal,
                                                    www.mssinergija.net



Powered by:
Openness and Interoperability @Microsoft

    Microsoft and                          Port25                    Codeplex
    Open Source                        blogs from the               resources for
   gateway for deeper               platform community             developers and
     exploration of                and the OSS Lab teams         consumers of open
       open source                 http://Port25.technet.com       source projects
      engagements                                              http://www.codeplex.com
 http://www.microsoft.com/openness




    Interoperability                     Open Up                  Shared Source
        Bridges                         cross-Industry                portal for
  technical collaborative            Interoperability and         Programmatically
          works                      Standards activities           sharing code
                                    http://www.microsoft.com
 http://www.interoperabilitybridges.com                        http://www.microsoft.com
                                            /interop/openup            /sharedsource




         OData                          Open Spec                    BizSpark
 open source starter kit           protocols, file formats,    Program for Start-Up
 for Internet publishing            standards, technical       companies from both
of Government datasets                  Specifications         commercial and open
  using the Open Data              http://www.microsoft.c       source backgrounds
http://ogdisdk.cloudapp.net               om/openspecific      http://www.microsoft.com
                                                ations                 /bizspark




How can I receive up-to-date Openness announcements from Microsoft?
In addition to the websites above, you can receive regular updates to Microsoft’s
openness, interoperability and standards efforts via the following channels:
•http://blogs.technet.com/b/openness/
•http://blogs.msdn.com/b/interoperability/
•http://twitter.com/OpenAtMicrosoft
•http://port25.technet.com
•http://channel9.msdn.com/Blogs/Interoperability

Contenu connexe

Tendances

Device security master (ASA Firewall) - project thesis - SZABIST-ZABTech Hyde...
Device security master (ASA Firewall) - project thesis - SZABIST-ZABTech Hyde...Device security master (ASA Firewall) - project thesis - SZABIST-ZABTech Hyde...
Device security master (ASA Firewall) - project thesis - SZABIST-ZABTech Hyde...MehtabRohela
 
Implementation Lessons using WebRTC in Asterisk
Implementation Lessons using WebRTC in AsteriskImplementation Lessons using WebRTC in Asterisk
Implementation Lessons using WebRTC in AsteriskMoises Silva
 
Structure of processes ppt
Structure of processes pptStructure of processes ppt
Structure of processes pptYojana Nanaware
 
gRPC - Fastest Data Transfer Protocol
gRPC - Fastest Data Transfer ProtocolgRPC - Fastest Data Transfer Protocol
gRPC - Fastest Data Transfer ProtocolSougata Pal
 
Accelerating Cassandra Workloads on Ceph with All-Flash PCIE SSDS
Accelerating Cassandra Workloads on Ceph with All-Flash PCIE SSDSAccelerating Cassandra Workloads on Ceph with All-Flash PCIE SSDS
Accelerating Cassandra Workloads on Ceph with All-Flash PCIE SSDSCeph Community
 
Q4.11: Getting Started in LAVA
Q4.11: Getting Started in LAVAQ4.11: Getting Started in LAVA
Q4.11: Getting Started in LAVALinaro
 
Moving to PCI Express based SSD with NVM Express
Moving to PCI Express based SSD with NVM ExpressMoving to PCI Express based SSD with NVM Express
Moving to PCI Express based SSD with NVM ExpressOdinot Stanislas
 
End to end ussd implementation
End to end ussd implementationEnd to end ussd implementation
End to end ussd implementationLalit Gupta
 
ip addressing & routing
 ip addressing & routing ip addressing & routing
ip addressing & routingVikas Jagtap
 
Lecture 1 introduction to parallel and distributed computing
Lecture 1   introduction to parallel and distributed computingLecture 1   introduction to parallel and distributed computing
Lecture 1 introduction to parallel and distributed computingVajira Thambawita
 
BICC protocol and application
BICC protocol and applicationBICC protocol and application
BICC protocol and applicationIsybel Harto
 

Tendances (18)

Device security master (ASA Firewall) - project thesis - SZABIST-ZABTech Hyde...
Device security master (ASA Firewall) - project thesis - SZABIST-ZABTech Hyde...Device security master (ASA Firewall) - project thesis - SZABIST-ZABTech Hyde...
Device security master (ASA Firewall) - project thesis - SZABIST-ZABTech Hyde...
 
Chapter4 l4
Chapter4 l4Chapter4 l4
Chapter4 l4
 
Implementation Lessons using WebRTC in Asterisk
Implementation Lessons using WebRTC in AsteriskImplementation Lessons using WebRTC in Asterisk
Implementation Lessons using WebRTC in Asterisk
 
Structure of processes ppt
Structure of processes pptStructure of processes ppt
Structure of processes ppt
 
gRPC - Fastest Data Transfer Protocol
gRPC - Fastest Data Transfer ProtocolgRPC - Fastest Data Transfer Protocol
gRPC - Fastest Data Transfer Protocol
 
OpenStack HA
OpenStack HAOpenStack HA
OpenStack HA
 
GSM Rating Overview
GSM Rating OverviewGSM Rating Overview
GSM Rating Overview
 
I/O Buffering
I/O BufferingI/O Buffering
I/O Buffering
 
Accelerating Cassandra Workloads on Ceph with All-Flash PCIE SSDS
Accelerating Cassandra Workloads on Ceph with All-Flash PCIE SSDSAccelerating Cassandra Workloads on Ceph with All-Flash PCIE SSDS
Accelerating Cassandra Workloads on Ceph with All-Flash PCIE SSDS
 
San
SanSan
San
 
Q4.11: Getting Started in LAVA
Q4.11: Getting Started in LAVAQ4.11: Getting Started in LAVA
Q4.11: Getting Started in LAVA
 
Moving to PCI Express based SSD with NVM Express
Moving to PCI Express based SSD with NVM ExpressMoving to PCI Express based SSD with NVM Express
Moving to PCI Express based SSD with NVM Express
 
End to end ussd implementation
End to end ussd implementationEnd to end ussd implementation
End to end ussd implementation
 
PCI Drivers
PCI DriversPCI Drivers
PCI Drivers
 
Asterisk sip channel performance
Asterisk sip channel performanceAsterisk sip channel performance
Asterisk sip channel performance
 
ip addressing & routing
 ip addressing & routing ip addressing & routing
ip addressing & routing
 
Lecture 1 introduction to parallel and distributed computing
Lecture 1   introduction to parallel and distributed computingLecture 1   introduction to parallel and distributed computing
Lecture 1 introduction to parallel and distributed computing
 
BICC protocol and application
BICC protocol and applicationBICC protocol and application
BICC protocol and application
 

Similaire à TypeScript - Javascript done right

Building SharePoint Online applications using Napa Office 365 Development Tools
Building SharePoint Online applications using Napa Office 365 Development ToolsBuilding SharePoint Online applications using Napa Office 365 Development Tools
Building SharePoint Online applications using Napa Office 365 Development ToolsGunnar Peipman
 
Sinergija 12 WP8 is around the corner
Sinergija 12 WP8 is around the cornerSinergija 12 WP8 is around the corner
Sinergija 12 WP8 is around the cornerCatalin Gheorghiu
 
.NET Fundamentals and Business Application Development
.NET Fundamentals and Business Application Development.NET Fundamentals and Business Application Development
.NET Fundamentals and Business Application Development명신 김
 
ASP.NET MVC 4 Overview
ASP.NET MVC 4 OverviewASP.NET MVC 4 Overview
ASP.NET MVC 4 OverviewGunnar Peipman
 
AWS Summit Auckland - Moving MS .NET Applications One Container at a Time
AWS Summit Auckland - Moving MS .NET Applications One Container at a TimeAWS Summit Auckland - Moving MS .NET Applications One Container at a Time
AWS Summit Auckland - Moving MS .NET Applications One Container at a TimeAmazon Web Services
 
CLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdf
CLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdfCLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdf
CLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdfssuserbe139c
 
Moving microsoft .net applications one container at a time
 Moving microsoft .net applications one container at a time  Moving microsoft .net applications one container at a time
Moving microsoft .net applications one container at a time Amazon Web Services
 
Tecnologias Free e Open Source na Plataforma Microsoft
Tecnologias Free e Open Source na Plataforma MicrosoftTecnologias Free e Open Source na Plataforma Microsoft
Tecnologias Free e Open Source na Plataforma MicrosoftGustavo Malheiros
 
The .NET Platform - A Brief Overview
The .NET Platform - A Brief OverviewThe .NET Platform - A Brief Overview
The .NET Platform - A Brief OverviewCarlos Lopes
 
Online voting system ppt by anoop
Online voting system ppt by anoopOnline voting system ppt by anoop
Online voting system ppt by anoopAnoop Kumar
 
.NET Innovations and Improvements
.NET Innovations and Improvements.NET Innovations and Improvements
.NET Innovations and ImprovementsJeff Chu
 
MvvmCross Introduction
MvvmCross IntroductionMvvmCross Introduction
MvvmCross IntroductionStuart Lodge
 
MvvmCross Seminar
MvvmCross SeminarMvvmCross Seminar
MvvmCross SeminarXamarin
 
Stronger than Chuck Norris: SharePoint in clouds, on earth, in subway and in ...
Stronger than Chuck Norris: SharePoint in clouds, on earth, in subway and in ...Stronger than Chuck Norris: SharePoint in clouds, on earth, in subway and in ...
Stronger than Chuck Norris: SharePoint in clouds, on earth, in subway and in ...Adis Jugo
 
Overcoming software development challenges by using an integrated software fr...
Overcoming software development challenges by using an integrated software fr...Overcoming software development challenges by using an integrated software fr...
Overcoming software development challenges by using an integrated software fr...Design World
 
Click, Click, Test - Automated Tests for APEX Applications
Click, Click, Test - Automated Tests for APEX ApplicationsClick, Click, Test - Automated Tests for APEX Applications
Click, Click, Test - Automated Tests for APEX ApplicationsKai Donato
 
The Roslyn Compiler: Look at Your Code from a Different Perspective (Raffaele...
The Roslyn Compiler: Look at Your Code from a Different Perspective (Raffaele...The Roslyn Compiler: Look at Your Code from a Different Perspective (Raffaele...
The Roslyn Compiler: Look at Your Code from a Different Perspective (Raffaele...ITCamp
 
Turning huge ships - Open Source and Microsoft
Turning huge ships - Open Source and MicrosoftTurning huge ships - Open Source and Microsoft
Turning huge ships - Open Source and MicrosoftChristian Heilmann
 
Unit Testing in JavaScript
Unit Testing in JavaScriptUnit Testing in JavaScript
Unit Testing in JavaScriptRob Scaduto
 

Similaire à TypeScript - Javascript done right (20)

Building SharePoint Online applications using Napa Office 365 Development Tools
Building SharePoint Online applications using Napa Office 365 Development ToolsBuilding SharePoint Online applications using Napa Office 365 Development Tools
Building SharePoint Online applications using Napa Office 365 Development Tools
 
Sinergija 12 WP8 is around the corner
Sinergija 12 WP8 is around the cornerSinergija 12 WP8 is around the corner
Sinergija 12 WP8 is around the corner
 
.NET Fundamentals and Business Application Development
.NET Fundamentals and Business Application Development.NET Fundamentals and Business Application Development
.NET Fundamentals and Business Application Development
 
ASP.NET MVC 4 Overview
ASP.NET MVC 4 OverviewASP.NET MVC 4 Overview
ASP.NET MVC 4 Overview
 
AWS Summit Auckland - Moving MS .NET Applications One Container at a Time
AWS Summit Auckland - Moving MS .NET Applications One Container at a TimeAWS Summit Auckland - Moving MS .NET Applications One Container at a Time
AWS Summit Auckland - Moving MS .NET Applications One Container at a Time
 
CLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdf
CLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdfCLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdf
CLR_via_CSharp_(Jeffrey_Richter_4th_Edition).pdf
 
Moving microsoft .net applications one container at a time
 Moving microsoft .net applications one container at a time  Moving microsoft .net applications one container at a time
Moving microsoft .net applications one container at a time
 
Tecnologias Free e Open Source na Plataforma Microsoft
Tecnologias Free e Open Source na Plataforma MicrosoftTecnologias Free e Open Source na Plataforma Microsoft
Tecnologias Free e Open Source na Plataforma Microsoft
 
The .NET Platform - A Brief Overview
The .NET Platform - A Brief OverviewThe .NET Platform - A Brief Overview
The .NET Platform - A Brief Overview
 
Online voting system ppt by anoop
Online voting system ppt by anoopOnline voting system ppt by anoop
Online voting system ppt by anoop
 
.NET Innovations and Improvements
.NET Innovations and Improvements.NET Innovations and Improvements
.NET Innovations and Improvements
 
MvvmCross Introduction
MvvmCross IntroductionMvvmCross Introduction
MvvmCross Introduction
 
MvvmCross Seminar
MvvmCross SeminarMvvmCross Seminar
MvvmCross Seminar
 
Stronger than Chuck Norris: SharePoint in clouds, on earth, in subway and in ...
Stronger than Chuck Norris: SharePoint in clouds, on earth, in subway and in ...Stronger than Chuck Norris: SharePoint in clouds, on earth, in subway and in ...
Stronger than Chuck Norris: SharePoint in clouds, on earth, in subway and in ...
 
Overcoming software development challenges by using an integrated software fr...
Overcoming software development challenges by using an integrated software fr...Overcoming software development challenges by using an integrated software fr...
Overcoming software development challenges by using an integrated software fr...
 
Click, Click, Test - Automated Tests for APEX Applications
Click, Click, Test - Automated Tests for APEX ApplicationsClick, Click, Test - Automated Tests for APEX Applications
Click, Click, Test - Automated Tests for APEX Applications
 
Lecture 10
Lecture 10Lecture 10
Lecture 10
 
The Roslyn Compiler: Look at Your Code from a Different Perspective (Raffaele...
The Roslyn Compiler: Look at Your Code from a Different Perspective (Raffaele...The Roslyn Compiler: Look at Your Code from a Different Perspective (Raffaele...
The Roslyn Compiler: Look at Your Code from a Different Perspective (Raffaele...
 
Turning huge ships - Open Source and Microsoft
Turning huge ships - Open Source and MicrosoftTurning huge ships - Open Source and Microsoft
Turning huge ships - Open Source and Microsoft
 
Unit Testing in JavaScript
Unit Testing in JavaScriptUnit Testing in JavaScript
Unit Testing in JavaScript
 

Plus de Wekoslav Stefanovski

Make you a Redux for fun and profit!
Make you a Redux for fun and profit!Make you a Redux for fun and profit!
Make you a Redux for fun and profit!Wekoslav Stefanovski
 
Servers? We don't need no stinking servers
Servers? We don't need no stinking serversServers? We don't need no stinking servers
Servers? We don't need no stinking serversWekoslav Stefanovski
 
Coding for the cloud - development of modern web applications
Coding for the cloud - development of modern web applicationsCoding for the cloud - development of modern web applications
Coding for the cloud - development of modern web applicationsWekoslav Stefanovski
 
Through Meteor to the stars - Developing full-stack SPA's with meteor.js
Through Meteor to the stars - Developing full-stack SPA's with meteor.jsThrough Meteor to the stars - Developing full-stack SPA's with meteor.js
Through Meteor to the stars - Developing full-stack SPA's with meteor.jsWekoslav Stefanovski
 
TypeScript 1.6 - How I learned to Stop Worrying and Love JavaScript
TypeScript 1.6 - How I learned to Stop Worrying and Love JavaScriptTypeScript 1.6 - How I learned to Stop Worrying and Love JavaScript
TypeScript 1.6 - How I learned to Stop Worrying and Love JavaScriptWekoslav Stefanovski
 
Testing your Single Page Application
Testing your Single Page ApplicationTesting your Single Page Application
Testing your Single Page ApplicationWekoslav Stefanovski
 
Smoke and Mirrors - Reflection in C#
Smoke and Mirrors - Reflection in C#Smoke and Mirrors - Reflection in C#
Smoke and Mirrors - Reflection in C#Wekoslav Stefanovski
 
SOLID -Clean Code For Mere Mortals
SOLID -Clean Code For Mere MortalsSOLID -Clean Code For Mere Mortals
SOLID -Clean Code For Mere MortalsWekoslav Stefanovski
 

Plus de Wekoslav Stefanovski (14)

Make you a Redux for fun and profit!
Make you a Redux for fun and profit!Make you a Redux for fun and profit!
Make you a Redux for fun and profit!
 
Blazor - C# for the web
Blazor - C# for the webBlazor - C# for the web
Blazor - C# for the web
 
Asynchrony on the web
Asynchrony on the webAsynchrony on the web
Asynchrony on the web
 
Servers? We don't need no stinking servers
Servers? We don't need no stinking serversServers? We don't need no stinking servers
Servers? We don't need no stinking servers
 
Typescript Decorators
Typescript DecoratorsTypescript Decorators
Typescript Decorators
 
Coding for the cloud - development of modern web applications
Coding for the cloud - development of modern web applicationsCoding for the cloud - development of modern web applications
Coding for the cloud - development of modern web applications
 
Through Meteor to the stars - Developing full-stack SPA's with meteor.js
Through Meteor to the stars - Developing full-stack SPA's with meteor.jsThrough Meteor to the stars - Developing full-stack SPA's with meteor.js
Through Meteor to the stars - Developing full-stack SPA's with meteor.js
 
TypeScript 1.6 - How I learned to Stop Worrying and Love JavaScript
TypeScript 1.6 - How I learned to Stop Worrying and Love JavaScriptTypeScript 1.6 - How I learned to Stop Worrying and Love JavaScript
TypeScript 1.6 - How I learned to Stop Worrying and Love JavaScript
 
How to write bad code using C#
How to write bad code using C#How to write bad code using C#
How to write bad code using C#
 
Garbage Collection .Net
Garbage Collection .NetGarbage Collection .Net
Garbage Collection .Net
 
Testing your Single Page Application
Testing your Single Page ApplicationTesting your Single Page Application
Testing your Single Page Application
 
Smoke and Mirrors - Reflection in C#
Smoke and Mirrors - Reflection in C#Smoke and Mirrors - Reflection in C#
Smoke and Mirrors - Reflection in C#
 
Entity Framework 5 - Code First
Entity Framework 5 - Code FirstEntity Framework 5 - Code First
Entity Framework 5 - Code First
 
SOLID -Clean Code For Mere Mortals
SOLID -Clean Code For Mere MortalsSOLID -Clean Code For Mere Mortals
SOLID -Clean Code For Mere Mortals
 

Dernier

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 

Dernier (20)

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 

TypeScript - Javascript done right

  • 1. TypeScript Javascript Done Right Wekoslav Stefanovski Seavus 24.10.2012
  • 2. Agenda • A little bit of history • Why is TypeScript needed – design goals • Using TypeScript (with Visual Studio or without) • TypeScript declaration – Types and type annotations – Classes – Interfaces and structural types – Modules • Why should I use TypeScript today? • Q&A
  • 3. Who am I Wekoslav Stefanovski Senior Developer Seavus - Javascript (ab)user since 2000 - C# user since 2001 - Joined the Ajax and XHR fun in 2006 - Member of the Macedonian .NET user group - Co-leader of the Macedonian Visual C# user group
  • 4. A little bit of history • What is this thing called Javascript??? • Prototype-based dynamic scripting language • Build in Netscape in 1995, initially focused on non-professional developers. • Created by Brendan Eich in a 10-day hack session. • Standardized as ECMAScript (in 1999), still plenty incompatible “dialects” • We were somewhat lucky, it could have been VBScript
  • 5. Why is TypeScript needed? • Javascript’s got 99 problems but types ain’t one – Variable hoisting – Some very idiosyncratic behaviors – No explicit includes – The this parameter can be actually that – Abysmal debugging experience – Browser DOM incompatibility is not due to Javascript • ECMAScript 6 standard specification is a long way off • Implementations are even further away
  • 6. Why is TypeScript needed? • Still people have to use it • It’s lingua franca of the web • People have build many great product using it: – jQuery – Ext JS – GWT – Knockout – Backbone.js – JSLint / JSHint – Node.js
  • 7. What exactly is TypeScript? • TypeScript is a language for application-scale Javascript development • TypeScript is a typed superset of JavaScript that compiles to plain Javascript • Any browser. Any host. Any OS. • Open Source • What TypeScript does is, it basically formalizes a static type system that describes JavaScript's dynamic types, but it describes them at development time. (Anders Hejlsberg)
  • 8. TypeScript design goals • Extend Javascript to facilitate writing large applications. • Superset of Javascript • Development tooling support • Compiled Javascript that runs on any Javascript execution environment (Chakra, V8, Node.js…) • Start with Javascript and add things here and there • Generate pretty, idiomatic Javascript
  • 9. Using TypeScript • Source file / declaration file code organization – .ts for source files – .d.ts for declaration files. – (analogous to .h and .cpp in C++) • Type safety, intellisense and compile errors • Declarations can be created for existing Javascript libraries – DOM and jQuery declarations provided with TypeScript – Possible to write your own for any existing Javascript library
  • 10. Using TypeScript with Visual Studio • Tooling support – Static type checking. – Strong type inference. – Symbol-based navigation. – Statement completion / intellisense. – Code refactoring. • Plug-in available for download
  • 11. Using TypeScript without Visual Studio • Support available for most popular code editors (Eclipse, Sublime Text, EMACS, Vim…) • Node.js package available (typescript) • Command line compiler (tsc).
  • 12. TypeScript declaration • Any (currently most) valid Javascript is valid TypeScript • Closely aligned with existing ECMAScript 6 proposals
  • 13. TypeScript types and type annotations • Optional static typing • Applied using a post-fix syntax • Support for built-in Javascript types (number, string, boolean, null, undefined, void) • Return type of the function can be inferred. • Supports optional types via ? Operator • Subtypes of the Any type • Supports typed arrays
  • 14. TypeScript arrow notation • New feature planned for ECMAScript 6. • Compact form of function expressions that omit the function keyword. • Similar to lambda expressions in C#. • Lexical scoping of this. var messenger = { message: "Hello World", start: function() { setTimeout(() => { alert(this.message); }, 3000); } }; messenger.start();
  • 15. TypeScript interfaces and structural types • Designed for development tooling support only. • Interfaces have no run-time representation - they are purely a compile-time construct. • Structural type system - interfaces are automatically implemented by any object/prototype that complies structurally. • Supports overload by parameter signature. • Supports implementing multiple interfaces.
  • 16. TypeScript classes • Classes are alike to the proposed classes for ECMAScript 6. • public or private member accessibility. • Parameter property declarations via constructor. • Supports single-parent inheritance. • Derived classes make use of super calls to parent. • Do not support overloads yet.
  • 17. TypeScript modules • Analogous to .NET namespaces. • Prevents global variable naming collisions. • Closely aligned with those proposed for ECMAScript 6. • Allows hiding implementation detail • Allows exposing a public API.
  • 18. Why should I use TypeScript • Open Source, hosted on codeplex!!! • Tooling support, for type safety, inference and refactoring!!! • Static types and compilation helps catch mistakes & bugs earlier!!! • Structural interfaces & typing!!! • Compiles to idiomatic JavaScript!!!
  • 19. Why should I use TypeScript (today) • Support for ECMAScript 6 today!!! • Works alongside existing code!!! • Does not hold your .js files hostage!!! • Anders Hejlsberg is involved!!!
  • 20. Why shouldn’t I use TypeScript • It is a remove (albeit a slight one) from the Javascript sources. • Only at version 0.8 (and it shows) • Limited availability of resources & libraries (can use any existing JavaScript, albeit with limited type safety and tooling support). • No support for generics (yet, but is defined in spec). • All types are nullable. • Limited tooling support outside of Visual Studio 2012 or Monaco web editor.
  • 21. ?
  • 22. Thank you for your attention.
  • 23. Please rate this lecture and WIN Windows Phone 8X by HTC! Help us choose the best Sinergija lecturer! HTC and Microsoft will award you – at the conference end, we’ll give one HTC Windows Phone 8X to someone from the audience – randomly. Go to www.mssinergija.net , log in and cast your votes! You can rate only lectures that you were present at, just once. More lectures you rate, more chances you have. Please use computers at the front of this room, or rate lecture from your phone or home computer, at Sinergija portal. This prize contest will end at Thursday, October 24th at 21:00. Winner will be announced at the official Sinergija web portal, www.mssinergija.net Powered by:
  • 24. Openness and Interoperability @Microsoft Microsoft and Port25 Codeplex Open Source blogs from the resources for gateway for deeper platform community developers and exploration of and the OSS Lab teams consumers of open open source http://Port25.technet.com source projects engagements http://www.codeplex.com http://www.microsoft.com/openness Interoperability Open Up Shared Source Bridges cross-Industry portal for technical collaborative Interoperability and Programmatically works Standards activities sharing code http://www.microsoft.com http://www.interoperabilitybridges.com http://www.microsoft.com /interop/openup /sharedsource OData Open Spec BizSpark open source starter kit protocols, file formats, Program for Start-Up for Internet publishing standards, technical companies from both of Government datasets Specifications commercial and open using the Open Data http://www.microsoft.c source backgrounds http://ogdisdk.cloudapp.net om/openspecific http://www.microsoft.com ations /bizspark How can I receive up-to-date Openness announcements from Microsoft? In addition to the websites above, you can receive regular updates to Microsoft’s openness, interoperability and standards efforts via the following channels: •http://blogs.technet.com/b/openness/ •http://blogs.msdn.com/b/interoperability/ •http://twitter.com/OpenAtMicrosoft •http://port25.technet.com •http://channel9.msdn.com/Blogs/Interoperability