We independently test and review every course that we recommend.
Please support us by joining our mailing list, and recommending this guide to others.
Updated: July 18, 2023
Pluralsight
By Various
Great instructors delivering focused, polished microlearning. A solid choice for screencast training, but you should supplement with independent practice.
This series of video courses covers everything from the basics to advanced TypeScript features. The courses are concise and scoped well to cover the core topics without too much overlap.
Pluralsight's authors are the main draw here, as experts Dan Wahlin, John Papa, Simon Allardice and others guide you through real-world TypeScript usage.
Pluralsight's TypeScript Core Language path includes an adaptive assessment that will measure your proficiency with the language. The assessment can give you a good idea for how your TypeScript knowledge stacks up against other Pluralsight users and areas to target for additional study.
Frontend Masters
By Various
One of the top video-based JavaScript learning resources available. If you complete the introductory JavaScript courses plus the Learn JavaScript path, you're going to be pretty solid with JavaScript. The first four to five courses here are a great start for getting up to speed.
In the core coursework of this path, you'll learn mostly from Mike North of Stripe (and formerly LinkedIn), so you'll learn practical insights into how TypeScript is used at top organizations. These courses are taken from real-time workshops Mike delivered, with code files so you can follow along and a reference website with detailed notes from each lecture.
The learning path will take you through the essentials of working with TypeScript, and put you on a journey to becoming your organization's TypeScript expert. You'll learn valuable insights into working with large TypeScript codebases.
Our initial research involved spending hours reading hundreds of reviews of various course options, and perusing forums for recommendations and user preferences. From this research, we narrowed down to a list of 12 highly-rated candidate courses.
We graded the candidate courses against the following criteria:
From this thorough research and testing, we're confident this is the single best guide to TypeScript courses available.
Codecademy
By Various Authors
A solid hands-on learning option for getting up to speed with TypeScript. Not as deep as other offerings, but covers the essentials.
The course provides frequent hands-on practice. Almost every section requires you to run some code to learn the concept, followed by a practical hands-on exercise to apply what youβve learned.
Each section of the course includes a guided project where you get to apply the concepts in a new context. The guided projects provide step by step instructions and hints in case you get stuck, which are helpful as youβre getting comfortable with the language.
Udemy
By Maximilian Schwarzmuller - Academind
A good choice if you can't afford other platforms, if you're newer to programming, and/or if you prefer learning from a single instructor. Clear explanations, lots of real world examples, and a helpful assignment section where you work through a project.
In this course, Max begins by teaching the core concepts of TypeScript and then continues by guiding learners through a project. He encourages you to stop the video and work through it on your own, before watching his solution video. This is one of the best parts of the course and very helpful for solidifying TypeScript knowledge.
TypeScript is a free and open-source high level programming language developed by Microsoft, that adds static typing, interfaces, classes, and advanced language features to JavaScript, making it more scalable and maintainable for large-scale applications. TypeScript improves developer productivity by catching potential errors during development and providing better tooling support, while seamlessly integrating with existing JavaScript codebases and libraries.
TypeScript compiles down to plain JavaScript, so it runs anywhere JavaScript runs.
TypeScript is a tremendously popular language with developers, ranking the 5th most used programming language and 3rd most admired programming language in Stack Overflowβs 2023 Developer Survey. Some of the worldβs leading technology companies use TypeScript, including Slack, Airbnb, and Google.
The Key Topics to focus on learning TypeScript:
Basic Types: Understand TypeScript's type system and learn about the basic types such as number, string, boolean, arrays, objects, and more. Explore type annotations and inference.
Type Annotations and Inference: Learn how to explicitly annotate types in TypeScript to provide type information. Additionally, grasp the concept of type inference, where TypeScript infers types based on the assigned values.
Functions and Interfaces: Explore how to define and use functions in TypeScript, including parameter types and return types. Dive into interfaces, which allow you to define contracts for object shapes and enforce type safety.
Classes and Object-Oriented Programming: Familiarize yourself with classes, inheritance, and object-oriented programming concepts in TypeScript. Learn how to create classes, implement interfaces, and work with access modifiers.
Generics: Understand the concept of generics in TypeScript, which provides a way to create reusable components that work with multiple types. Learn how to define generic types and use them in functions, classes, and interfaces.
Modules and Namespaces: Discover how to organize your TypeScript code into modules and namespaces. Learn about import and export statements, module resolution, and the different module systems supported by TypeScript.
Compiler Configuration: Gain knowledge of the TypeScript compiler (tsc) and how to configure the tsconfig.json file to customize the compilation options, such as target ECMAScript version, module format, and more.
To get the most out of using TypeScript, you should first be familiar with the following:
JavaScript: Having a solid understanding of JavaScript is essential since TypeScript is a superset of JavaScript. Ensure you are comfortable with JavaScript concepts, syntax, and features before diving into TypeScript.
HTML and CSS: Familiarity with HTML and CSS is valuable as TypeScript is often used in conjunction with these technologies to build web applications. Understanding how to structure and style web pages will complement your TypeScript development skills.
ECMAScript (ES) Versions: TypeScript is closely aligned with ECMAScript standards. It's helpful to have knowledge of ES6 (ECMAScript 2015) and subsequent versions, as TypeScript incorporates many of the language features introduced in these versions.
IDE or Text Editor: TypeScript development is greatly facilitated by using a feature-rich Integrated Development Environment (IDE) or text editor. Familiarize yourself with popular options like Visual Studio Code, WebStorm, or Atom, and explore their TypeScript-specific features and extensions.
Package Managers: Understanding how to work with package managers like npm (Node Package Manager) or Yarn is important, as TypeScript projects often rely on external dependencies. Learn how to manage packages, install TypeScript-related libraries, and handle project dependencies effectively.
Help us out by joining our email list to get notified when we release new guides, and recommending this guide to others.
Thanks for reading!