One Language to Rule Them All: Typescript

Total Page:16

File Type:pdf, Size:1020Kb

One Language to Rule Them All: Typescript One language to rule them all: TypeScript Gil Fink CEO and Senior Consultant, sparXys About Me • sparXys CEO and Senior consultant • Microsoft MVP in the last 8 years • Pro Single Page Application Development (Apress) co-author • 4 Microsoft Official Courses (MOCs) co-author • GDG Rishon and AngularUP co-organizer Agenda • The why • TypeScript syntax and language features • Building a simple end-to-end app with TypeScript • Summary Wait! JavaScript? Are you nuts? "JavaScript is the assembly language of the Web" Erik Meijer “You can write large programs in JavaScript. You just can’t maintain them” Anders Hejlsberg Let’s Be Serious • JavaScript is really a powerful language: o Functional o Dynamic o Can run everywhere • Huge community • Big eco-system • Tools – IDEs, debuggers, test tools and etc. The Alternatives • We have several alternatives: • Hard core vanilla JavaScript development • JavaScript transpilers • CoffeeScript – http://coffeescript.org • Dart – http://dartlang.org • Clojurescript - https://github.com/clojure/clojurescript • Script# - http://scriptsharp.com/ What is TypeScript? “TypeScript is a typed superset of JavaScript that compiles to plain JavaScript” ~typescriptlang.org Hello TypeScript Demo TypeScript is Very Flexible Any Browser Any Host Any OS Tool Support Some TypeScript Key Features Support Support for standard Encapsulation Interfaces and Lambda and Intellisense constructors, JavaScript through classes enums generics and syntax properties and code with and modules support support checking functions static typing Features from the near Future of the Web (ES2015/6), Today • Modules • Shorthand • Classes properties • Arrow functions • Computed • Default parameters properties • Destructuring • Octal / binary literals • Spread and rest • Symbols • Let and const • Template strings • for...ofChoose your compilation• Object literal scenario. methodsIt is up to you! From TypeScript to JavaScript TypeScript Code JavaScript Code TypeScript Compiler class Greeter { var Greeter = (function () { greeting: string; function Greeter(message) { this.greeting = message; constructor(message: string) { } this.greeting = message; Greeter.prototype.greet = function () { } tsc.js return “Hi," + this.greeting; greet() { }; return “Hi," + this.greeting; return Greeter; })(); } } How Good is TypeScript’s Output? tsconfig.json • Enables to configure the compiler options: o Target language (ES3, ES5, ES6) o Module system (AMD, ES6, CommonJS and etc.) o Source map generation o Remove comments when compiling o And more tsconfig.json Demo Some Important Side Notes • All JavaScript code is TypeScript code o Simply copy and paste • All JavaScript libraries work with TypeScript o You will need a declaration file to work with the library @Types Demo TypeScript Type Annotations • You can add type annotations to variables and functions var str: string = ‘hello’; // str is annotated as string function foo(name: string) : string { // parameter and function annotated return ‘hello’ + name; } TypeScript Types Type Annotations Demo Classes and Interfaces • You can define classes (same as in ES2015) • You can define interfaces o And implement them later interface IGreeter { var Greeter = (function () { greet(): void; function Greeter() { } } class Greeter implements IGreeter{ Greeter.prototype.greet = function () { greeting: string; greet() { console.log(this.greeting); console.log(this.greeting); }; } return Greeter; } })(); Modules • Uses ES2015 modules syntax export interface IGreeter { var Greeter = (function () { greet(): void; function Greeter() { } } export class Greeter implements Greeter.prototype.greet = function () IGreeter { { greeting: string; console.log(this.greeting); greet() { }; console.log(this.greeting); return Greeter; } }()); } exports.Greeter = Greeter; Classes, Modules and Interfaces Demo Building a Simple End-to-End App with TypeScript Demo TypeScript Versions • TypeScript 1.0 • TypeScript 2.0 • Current version: TypeScript 2.3 What’s New in TypeScript 2? • Generators and Iteration for ES5/ES3 • Type-checking for JavaScript files • Null- and undefined-aware types • ES2017 Spread and Rest • Improved any inference • Tagged union types • And a lot more Questions? Summary • Open source language that compiles into JavaScript • Key features: • Code encapsulation • Maintainable code • Tooling support • Learn TypeScript today! Resources • TypeScript – http://www.typescriptlang.org • TypeScript Source Code - https://github.com/Microsoft/TypeScript • Definitely Typed – https://github.com/borisyankov/DefinitelyTyped • My Website – http://www.gilfink.net • Follow me on Twitter – @gilfink Thank You!.
Recommended publications
  • Coffeescript Accelerated Javascript Development.Pdf
    Download from Wow! eBook <www.wowebook.com> What readers are saying about CoffeeScript: Accelerated JavaScript Development It’s hard to imagine a new web application today that doesn’t make heavy use of JavaScript, but if you’re used to something like Ruby, it feels like a significant step down to deal with JavaScript, more of a chore than a joy. Enter CoffeeScript: a pre-compiler that removes all the unnecessary verbosity of JavaScript and simply makes it a pleasure to write and read. Go, go, Coffee! This book is a great introduction to the world of CoffeeScript. ➤ David Heinemeier Hansson Creator, Rails Just like CoffeeScript itself, Trevor gets straight to the point and shows you the benefits of CoffeeScript and how to write concise, clear CoffeeScript code. ➤ Scott Leberknight Chief Architect, Near Infinity Though CoffeeScript is a new language, you can already find it almost everywhere. This book will show you just how powerful and fun CoffeeScript can be. ➤ Stan Angeloff Managing Director, PSP WebTech Bulgaria Download from Wow! eBook <www.wowebook.com> This book helps readers become better JavaScripters in the process of learning CoffeeScript. What’s more, it’s a blast to read, especially if you are new to Coffee- Script and ready to learn. ➤ Brendan Eich Creator, JavaScript CoffeeScript may turn out to be one of the great innovations in web application development; since I first discovered it, I’ve never had to write a line of pure JavaScript. I hope the readers of this wonderful book will be able to say the same. ➤ Dr. Nic Williams CEO/Founder, Mocra CoffeeScript: Accelerated JavaScript Development is an excellent guide to Coffee- Script from one of the community’s most esteemed members.
    [Show full text]
  • Chapter 1: Introduction to the Pencil Code Environment
    Chapter 1: Introduction to the Pencil Code Environment In this manual we will show how to use Pencil Code to explore programming. Pencil Code is a free programming tool available at pencilcode.net. Pencil Code was developed by Google engineer David Bau together with his son Anthony Bau, with open-source contributions from many others. Two Ways of Looking at a Program There are two ways of viewing a program. A computer user sees a program by looking at its output. A programmer works with a program’s source code. In Pencil Code, the screen is split into two halves, with the source code on the left and the output on the right. You run programs by by pressing the “play” button in the middle. The Pencil Code interface splits the screen, showing source code on the left and output on the right. The play button in the center runs the code and produces output. Languages and Libraries in Pencil Code Pencil Code supports code in both blocks and text using mainstream web programming languages and useful libraries including: • HTML, the standard HyperText Markup Language for the web. • JavaScript, the standard programming language of web browsers. • CSS, the standard Cascading Style Sheet language for visual styles on the web. • jQuery, a popular library that simplifies programming interactive websites. • CoffeeScript, a language that lets you do more with less typing than JavaScript. • jQuery-turtle, which extends jQuery to simplify graphics and animation for novices. With Pencil Code, students can use these technologies to create web applications with global visibility and impact while exploring fundamental concepts in computational thinking.
    [Show full text]
  • Coffeescript Accelerated Javascript Development, Second Edition
    Extracted from: CoffeeScript Accelerated JavaScript Development, Second Edition This PDF file contains pages extracted from CoffeeScript, published by the Prag- matic Bookshelf. For more information or to purchase a paperback or PDF copy, please visit http://www.pragprog.com. Note: This extract contains some colored text (particularly in code listing). This is available only in online versions of the books. The printed versions are black and white. Pagination might vary between the online and printed versions; the content is otherwise identical. Copyright © 2015 The Pragmatic Programmers, LLC. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form, or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior consent of the publisher. The Pragmatic Bookshelf Dallas, Texas • Raleigh, North Carolina CoffeeScript Accelerated JavaScript Development, Second Edition Trevor Burnham The Pragmatic Bookshelf Dallas, Texas • Raleigh, North Carolina Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and The Pragmatic Programmers, LLC was aware of a trademark claim, the designations have been printed in initial capital letters or in all capitals. The Pragmatic Starter Kit, The Pragmatic Programmer, Pragmatic Programming, Pragmatic Bookshelf, PragProg and the linking g device are trade- marks of The Pragmatic Programmers, LLC. Every precaution was taken in the preparation of this book. However, the publisher assumes no responsibility for errors or omissions, or for damages that may result from the use of information (including program listings) contained herein. Our Pragmatic courses, workshops, and other products can help you and your team create better software and have more fun.
    [Show full text]
  • Learning HTML5 Game Programming Addison-Wesley Learning Series
    Learning HTML5 Game Programming Addison-Wesley Learning Series Visit informit.com/learningseries for a complete list of available publications. The Addison-Wesley Learning Series is a collection of hands-on programming guides that help you quickly learn a new technology or language so you can apply what you’ve learned right away. Each title comes with sample code for the application or applications built in the text. This code is fully annotated and can be reused in your own projects with no strings attached. Many chapters end with a series of exercises to encourage you to reexamine what you have just learned, and to tweak or adjust the code as a way of learning. Titles in this series take a simple approach: they get you going right away and leave you with the ability to walk off and build your own application and apply the language or technology to whatever you are working on. Learning HTML5 Game Programming A Hands-on Guide to Building Online Games Using Canvas, SVG, and WebGL James L. Williams Upper Saddle River, NJ • Boston • Indianapolis • San Francisco New York • Toronto • Montreal • London • Munich • Paris • Madrid Cape Town • Sydney • Tokyo • Singapore • Mexico City Many of the designations used by manufacturers and sellers to distinguish their products Associate are claimed as trademarks. Where those designations appear in this book, and the publish- Publisher er was aware of a trademark claim, the designations have been printed with initial capital Mark Taub letters or in all capitals. Senior Acquisitions The author and publisher have taken care in the preparation of this book, but make no Editor expressed or implied warranty of any kind and assume no responsibility for errors or omis- Trina MacDonald sions.
    [Show full text]
  • Open Source on IBM I Webinar Series Day 2 ERWIN EARLEY ([email protected]), SR
    Open Source on IBM i Webinar Series Day 2 ERWIN EARLEY ([email protected]), SR. SOLUTIONS CONSULTANT, PERFORCE, NOVEMBER 2019 2 | COMMON Webinar Series: Open Source on IBM i | November 2019 zend.com Day 1 Review • Introduction to Open Source on IBM i • Why is Open Source on IBM i Important • Understanding the PASE environment as the enabler of Open Source on IBM i • Getting Familiar with the PASE environment 2 | Zend by Perforce © 2019 Perforce Software, Inc. zend.com 3 | COMMON Webinar Series: Open Source on IBM i | November 2019 zend.com Day 2 Agenda • Setting up OSS EcoSystem on IBM i – ACS version • Exploring Containers on IBM i • Managing Open Source on IBM i • Exploring Open Source Programming Languages ▪ Integration with Db2 and ILE • After-Hours Lab: Containers & Setting up Development Environment • After-Hours Lab: Open Source Programming Languages 3 | Zend by Perforce © 2019 Perforce Software, Inc. zend.com IBM Systems Technical University © 3 4 | COMMON Webinar Series: Open Source on IBM i | November 2019 zend.com Setting up OSS Ecosystem on IBM i – ACS Version 4 | Zend by Perforce © 2019 Perforce Software, Inc. zend.com 5 | COMMON Webinar Series: Open Source on IBM i | November 2019 zend.com The directory structure Before installing the Open Source ecosystem / dev home lib sbin tmp usr var Directory Contents bin Commands dev Device Files etc Configuration files home User Home Directories lib Libraries pkgs Package files / commands sbin Privileged commands tmp Temporary files usr Utilities & Applications var Variable files
    [Show full text]
  • Webassembly: High Speed at Low Cost for Everyone
    WebAssembly: high speed at low cost for everyone Andreas Rossberg Google [email protected] Abstract instructions that are widely available on modern CPUs. They map WebAssembly is a new language- and platform-independent bi- to machine code in a predictable manner and with predictable nary code format bringing native-code performance to the web. We performance on all relevant platforms. present its design and report our experience with specifying its se- High-level Data Flow. WebAssembly is an expression language: mantics via a reference interpreter written in OCaml, that currently it is defined as an AST in which machine operators return values serves as a proxy for a future formal specification. and can be used as operands to other operators. The binary format is a post-order serialisation of this AST. This design provides for 1. Introduction more compact binaries than 3-address code or SSA form would. Like it or not, the Web has become one of the most important Low-level Control Flow. Control flow is available mainly in the platforms for application development. Yet there is only one pro- form of sequential blocks and branch instructions, plus a structured gramming language that the Web understands: JavaScript. Liter- conditional. However, branches are still structured: they can only ally hundreds of compilers have been written that translate almost break out of an expression, not jump into one. This prevents ir- every imaginable language into JavaScript in order to run on the reducible control flow and associated complications (it’s the pro- Web [1]. Unfortunately, JavaScript is not the most delightful com- ducers’ responsibility to transform irreducible control flow into pilation target: it’s brittle and often slow in unpredictable ways, all structured form [6]).
    [Show full text]
  • Archive and Compressed [Edit]
    Archive and compressed [edit] Main article: List of archive formats • .?Q? – files compressed by the SQ program • 7z – 7-Zip compressed file • AAC – Advanced Audio Coding • ace – ACE compressed file • ALZ – ALZip compressed file • APK – Applications installable on Android • AT3 – Sony's UMD Data compression • .bke – BackupEarth.com Data compression • ARC • ARJ – ARJ compressed file • BA – Scifer Archive (.ba), Scifer External Archive Type • big – Special file compression format used by Electronic Arts for compressing the data for many of EA's games • BIK (.bik) – Bink Video file. A video compression system developed by RAD Game Tools • BKF (.bkf) – Microsoft backup created by NTBACKUP.EXE • bzip2 – (.bz2) • bld - Skyscraper Simulator Building • c4 – JEDMICS image files, a DOD system • cab – Microsoft Cabinet • cals – JEDMICS image files, a DOD system • cpt/sea – Compact Pro (Macintosh) • DAA – Closed-format, Windows-only compressed disk image • deb – Debian Linux install package • DMG – an Apple compressed/encrypted format • DDZ – a file which can only be used by the "daydreamer engine" created by "fever-dreamer", a program similar to RAGS, it's mainly used to make somewhat short games. • DPE – Package of AVE documents made with Aquafadas digital publishing tools. • EEA – An encrypted CAB, ostensibly for protecting email attachments • .egg – Alzip Egg Edition compressed file • EGT (.egt) – EGT Universal Document also used to create compressed cabinet files replaces .ecab • ECAB (.ECAB, .ezip) – EGT Compressed Folder used in advanced systems to compress entire system folders, replaced by EGT Universal Document • ESS (.ess) – EGT SmartSense File, detects files compressed using the EGT compression system. • GHO (.gho, .ghs) – Norton Ghost • gzip (.gz) – Compressed file • IPG (.ipg) – Format in which Apple Inc.
    [Show full text]
  • Why I Was Wrong About Typescript TJ Vantoll
    Why I Was Wrong About TypeScript TJ VanToll TypeScript TypeScript TypeScript Why I Was Wrong About TypeScript Whether TypeScript is a good fit for your next project Why I Was Wrong About TypeScript “A typed superset of JavaScript that compiles to plain JavaScript” “A typed superset of JavaScript that compiles to plain JavaScript” !" # $ Compile to JavaScript tools • There are a lot. • 345 • Source: https://github.com/jashkenas/coffeescript/wiki/List-of- languages-that-compile-to-JS • Ruby, Python, Erlang, Java, Scala, C#, F#, Lisp, Scheme, Haskell, Smalltalk, C, C++, Basic, Go, PHP, and way more. Fun names of compile-to-JS tools • treehugger • jangaroo • Waterbear http://waterbearlang.com/ Compile to JavaScript tools • There are a lot. • 345 • Source: https://github.com/jashkenas/coffeescript/wiki/List-of- languages-that-compile-to-JS • Ruby, Python, Erlang, Java, Scala, C#, F#, Lisp, Scheme, Haskell, Smalltalk, C, C++, Basic, Go, PHP, and way more. Why I Was Wrong About TypeScript % “We risk a lot by building our core on top of TypeScript.” “I don’t hear anyone talking about TypeScript.” “I like to keep my JavaScript pure, as God intended.” Why I Was Wrong About TypeScript Why? 3 reasons 1) Commitment to the ECMAScript standard “Some examples [of compile-to-JavaScript frameworks], like Dart, portend that JavaScript has fundamental flaws and to support these scenarios requires a “clean break” from JavaScript in both syntax and runtime. We disagree with this point of view. We believe that with committee participant focus, the standards runtime can be expanded and the syntactic features necessary to support JavaScript at scale can be built upon the existing JavaScript standard.” 2) Types are opt-in 3) Tooling So should you use TypeScript? • Are your apps big? • Do you work on a team? • Unfamiliar codebases? • Non JS developers that need to write JS code? Thanks! @tjvantoll http://bit.ly/DR2017-vantoll.
    [Show full text]
  • The History and Future of Google Web Toolkit
    The History and Future of Google Web Toolkit Ray Cromwell Tech Lead History 2005 Google Maps Timeline ● GWT 1.0 (2006) ● GWT 1.3 (2007) First Open Source Release, OSX support ● GWT 1.4 (2007) JUnit and ImageBundle ● GWT 1.5 (2008) Java 1.5 support, Overlay Types, DOM API, CSS Themes, Linkers ● GWT 1.6 (2009) EventHandlers, EMMA Support, WAR support, Parallelized Builds ● GWT 1.7 (2009) Newer browser support, IE8, GPE and AppEngine ● GWT 2.0 (2009) DevMode, DraftCompile, UIBinder, LayoutPanel, CodeSplitter, ClientBundle, CssResource ● GWT 2.1 (2010) RequestFactory, Editor Framework, Validation, MVP, Cell Widgets ● GWT 2.2 (2011) GWT Designer, HTML5 support ● GWT 2.3 (2011) Better AppEngine integration ● GWT 2.4 (2011) Maven and RequestFactory enhancements Where we are today. ● SDK downloaded over 1 million times ● 100,000+ Active Developers ● Deep Integration with Eclipse, IntelliJ, Spring STS/Roo ● Used by Google products such as AdWords, Flights, Wallet ● Fun things: GwtQuake, Angry Birds for the Web ● GWT Today is a mature, high quality, code base. Introducing GWT 2.5 ● New Compiler Optimizations ● Closure Compiler Integration ● Code Splitter Improvements ● Better Stack Traces with SourceMaps ● Real Time Compiles with SuperDevMode ● UiBinder and CellWidget updates ● I18N and ARIA/Accessibility improvements ● Elemental - High performance, feature complete, HTML5 Compiler Optimizations Default Options 14% Smaller 8% Smaller Closure Compiler Integration GWT 2.4 vs GWT 2.5 + Closure 20% Smaller than GWT 2.4 CodeSplitter Improvements Problem:
    [Show full text]
  • Coffeescript
    Frames | No Frames COFFEESCRIPT 1 CoffeeScript Plugin - Reference Documentation Authors: Jeff Brown Version: 1.0-SNAPSHOT Table of Contents 1. Introduction To The CoffeeScript Plugin ................................................................................................................... 3 2. Defining CoffeeScript Functions ................................................................................................................................ 4 2.1 Compiler Configuration Options ........................................................................................................................... 4 3. Calling CaffeeScript Functions From A GSP ............................................................................................................ 5 4. Defining Inline CoffeeScript ...................................................................................................................................... 6 2 1. Introduction To The CoffeeScript Plugin The CoffeeScript plugin provides support for taking advantage of CoffeeScript in a Grails application. This document describes the CoffeeScript integration options in a Grails application. For details about the CoffeeScript language and general usage see jashkenas.github.com/coffee-script/. 3 2. Defining CoffeeScript Functions CoffeeScript functions may be defined in .coffee files under src/coffee/. A simple example: // src/coffee/math.coffee window.multiplyNumbers = (x, y) -> result = x * y; msg = x + " * " + y + " is " + result; return msg All CoffeeScript
    [Show full text]
  • Book Reviews Elizabbeth Zwicooky, with Mark Laksmourine
    Book Reviews ELIZABbETH ZWICOOKY, WITH MARK LAksMOURINE Team Geek: A Software Developer’s Guide to This is not a story I was part of, and it’s before I came to Working Well with Others Silicon Valley, so in some sense it’s not a world I know . And Brian W . Fitzpatrick and Ben Collins-Sussman yet, at the same time, it is the world I knew then (a time when O’Reilly, 2012 . 160 pp . we saved the foam that one of our computers came in because ISBN 978-1-449-30244-3 it was handy for sleeping on when you had been programming too long and needed a nap) . Furthermore, it is also the world of the most recent startup I was at . Having the stories told by The Developer’s Code: What Real Programmers Do the participants gives this a sense of truth that most tales of Ka Wai Cheung computing history don’t possess . Pragmatic Bookshelf, 2012 . 141pp . This came in (reprinted) for review right around the time ISBN 978-1-934356-79-1 Steve Jobs died, and I put off looking at it partly because of These make a nice pair; each is the programmer’s equivalent the noise at the time . Although Steve Jobs appears, this is not of a glossy management book, with simple, good advice well a book about him, and it depicts him with the full complexity packaged . Simple ideas are easy to read and easy to believe in of feelings that people had at the time . and sadly very, very hard to implement .
    [Show full text]
  • Score Jetstream 2 Is a Javascript and Webassembly Benchmark
    JetStream 2 is a JavaScript and WebAssembly benchmark suite focused on the most advanced web applications. It rewards browsers that start up quickly, execute code quickly, and run smoothly. For more information, read the in-depth analysis. Bigger scores are better. 23.793 Score 3d-cube-SP 3d-raytrace-SP acorn-wtb ai-astar 46.441 59.084 4.921 47.746 23.697 62.112 68.054 26.178 84.034 93.760 2.895 5.848 7.040 34.014 44.053 72.641 First Worst Average First Worst Average First Worst Average First Worst Average Air async-fs Babylon babylon-wtb 35.352 63.289 56.960 5.488 17.483 39.920 63.305 46.296 69.444 78.852 16.779 64.309 171.272 3.137 6.024 8.749 First Worst Average First Worst Average First Worst Average First Worst Average base64-SP Basic bomb-workers Box2D 62.703 73.492 4.973 32.784 34.247 81.967 87.823 25.773 95.694 160.941 4.878 4.793 5.259 7.418 35.842 132.517 First Worst Average First Worst Average First Worst Average First Worst Average cdjs chai-wtb coffeescript-wtb crypto 7.231 12.482 3.976 180.951 5.669 8.112 8.222 9.690 13.405 14.970 3.003 3.785 5.529 74.627 202.020 392.999 First Worst Average First Worst Average First Worst Average First Worst Average crypto-aes-SP crypto-md5-SP crypto-sha1-SP date-format-tofte-SP 87.955 103.686 98.286 22.053 39.683 116.279 147.460 32.051 178.571 194.763 41.322 121.951 188.410 18.797 23.283 24.505 First Worst Average First Worst Average First Worst Average First Worst Average date-format-xparb-SP delta-blue earley-boyer espree-wtb 27.087 127.106 83.172 5.890 22.831 28.944 30.075 27.027 180.180
    [Show full text]