pokedex-typescript
pokedex-typescript copied to clipboard
Learn the basics of TypeScript by building a Pokedex App from scratch with HTML and CSS
A Practical Guide to TypeScript - How to Build a Pokedex app using HTML, CSS, and TypeScript
TypeScript is a superset that needs to compile to plain JavaScript. It offers more control over your code since it uses type annotations, interfaces, classes, and static type checking to throw errors at compile-time. TypeScript helps to enhance code quality and understandability, especially with a large codebase.
In this guide, I will lead you through TypeScript by learning first all the basics needed to start with this great language, and then finish up this article by building an app from scratch using HTML, CSS, and TypeScript.
- What is TypeScript?
- Setting up TypeScript
- Configuring TypeScript with tsconfig
- TypeScript Types
- Basic TypeScript Types
- Interfaces and Type aliases
- Build a Pokedex app using TypeScript
- Markup
- Fetch and display data using TypeScript
- Compile TypeScript to JavaScript
- Resources