Skip to content
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.

Latest commit

 

History

History
37 lines (20 loc) · 1.55 KB

README.md

File metadata and controls

37 lines (20 loc) · 1.55 KB

Introduction to TypeScript for JavaScript developers

This project contains the presentation and sample code for my "Introduction to TypeScript for JavaScript Developers" session at the Atlanta JavaScript Meetup.

Run the Presentation.

Examples

The following examples are included in this project.

Learning TypeScript Samples

The samples folder contains a simple project to illustrate various TypeScript features. The examples are best viewed from an IDE like Visual Studio Code for development-time feedback. From the folder, you can:

npm install to install pre-requisite dependencies.

npm run-script tsc builds JavaScript files from the examples.

node 001-types runs the first example.

npm run-script tsc:w builds and watches, useful for commenting/uncommenting code to walk through the example.

npm run-script tsc:es6 builds for ECMAScript 2015 to illustrate differences in output despite the same TypeScript source.

Project

The project folder contains a very simple web project that uses TypeScript.

Next Steps

Regards,

@JeremyLikness | Blog