This TypeScript crash course is meant to be a quick introduction to TypeScript for people who already know OOP. There are three exercises that cover the most important features of modern TypeScript. The exercises need NodeJS 20 to be installed.
- Install NVM
- Install NodeJS Version 20 via NVM:
nvm install 20
- Check if the correct version is installed:
node -v
- In each exercise folder run
npm install
to install the dependencies
The examples shown in the slides are in the examples
folder. You can use them as a reference to
solve the exercises.
- Exercise 01 - Hello World
- Exercise 02 - Async Google Ping Tester
- Exercise 03 - Webserver
The solutions are in the solutions
folder. You can run them with npm start
after installing the
dependencies.