Dive Into Advanced TypeScript

Rate this content
Bookmark

Typescript or not Typescript? More than ten years have passed since its birth, and many of us still struggle to understand and love it. It’s so simple but sometimes we don’t really know how it works.

Well, it’s time to understand more and stop bypassing it with a simple any.

Types, functions, literals, unions, intersections and so on: together, we will see all the notions that will lead you to start loving and using it to the fullest to ensure a more typologically secure future and perhaps not be hated by your future self.

This talk has been presented at JSNation 2024, check out the latest edition of this JavaScript Conference.

FAQ

A type guard in TypeScript is a function that performs a type check and tells TypeScript the type of a variable within a certain scope. It helps TypeScript to detect what type a user is working with, enhancing code accuracy and performance.

In TypeScript, runtime type checking can be achieved using type guards and literal types, or by using libraries like Zod which allow schema-based validation that works both at runtime and during type checking.

Branded types in TypeScript are used to create a unique identity for primitive types, such as strings or numbers, ensuring they adhere to specific constraints or business rules relevant to your domain.

TypeScript performs static type checking at build time, allowing developers to catch and fix type errors before the code goes into production. This helps in maintaining robust code quality and prevents runtime errors.

The 'never' type in TypeScript represents values that never occur. It is used in function return types or within conditional types to signal that a condition should never be true or a function should never return.

Yes, since TypeScript is a superset of JavaScript, all JavaScript code is automatically valid TypeScript code. However, TypeScript code may require transpilation to JavaScript, depending on the features used.

Converting JavaScript to TypeScript provides benefits like static type checking, improved editor support, and access to newer ECMAScript features, leading to more maintainable and error-resistant code.

When migrating a large JavaScript codebase to TypeScript, it's advisable to start with less strict TypeScript configurations, incrementally adapting and refining the codebase, and gradually tightening the type checks as the migration progresses.

Luca Del Puppo
Luca Del Puppo
30 min
13 Jun, 2024

Comments

Sign in or register to post your comment.

Video Summary and Transcription

Today's Talk discusses TypeScript and its relationship with JavaScript, emphasizing the importance of studying JavaScript first. The Talk explores type guards, runtime type checking, and the use of the 'never' type to handle errors and ensure type safety. It also delves into alternative solutions for type handling, branded types, and schema-based validation using Zod. The Talk concludes with advice on migrating to TypeScript and the need for beginner-friendly documentation and strictness in code.
Available in Español: Sumérgete en TypeScript Avanzado

1. Introduction to TypeScript

Short description:

Today, I will talk about TypeScript and JavaScript. TypeScript loves JavaScript, but the reverse is not true. You should study JavaScript before moving to TypeScript. JavaScript code is the only code that runs in production. Now, let's jump into the code and look at an example of working with TypeScript.

So, today I try to talk something strange in TypeScript. First of all, let me introduce myself. I'm Luca De Pupol. I'm Italian. I'm a software developer at Niaform, and, if you don't know us, we're an Irish consultant company, but we are based in the US, central Europe, Brazil, and some positions also in India. I love also TypeScript and JavaScript.

I try to run my YouTube channel but in the last time, I don't have too much time for it, and also try to write a post for tech people. I love running, hiking, and animals, especially dogs.

By the way, I want to start with a question, and don't be shy. Who loves TypeScript? Raise your hands, but if you don't like it, you can leave your hands down without any problem. Not all the people! And who loves JavaScript? I hope all, because you are here! But not all! Why? Why are you here? Who loves Java? Why?

Okay. I want to start with small tips. TypeScript loves JavaScript. So if you love JavaScript, you should also love TypeScript. But JavaScript doesn't love TypeScript. If you have a JavaScript code, it can also be a TypeScript code, but if you have a TypeScript code, it's not a JavaScript code. Please remember, before you have to study JavaScript, and then you can move to TypeScript. Always. Otherwise, TypeScript is just magic for you, and at run time, it's a mess. And remember, JavaScript code is the only code that runs in production. So, if you don't know it, your customer called your boss, probably! Okay, and that's it for my tips, and I jumped to the code.

I think this talk is like a sort of example, and stuff that we can do with TypeScript. So let me try to write code with this desk, otherwise, I will show the problem, and I will show the solution directly from the solution folder. So I suppose that if you are working with TypeScript, you start to create the types for your object. For instance, you can have, in this case, the person object, the company object, and in some part, you have a sort of union type, for instance, the user type. That is a union between the person and the company. You start to create your object, the person and the company, you can create a new person from the current person, but in some part of your code, you want to print the user. Okay? But the user can be a person or a company. But you want to be strict, and maybe you want to create a function for the person, and create a specific message for the person, and then create a specific message for the company. And this function accepts a person or a company.

2. Type Guards in TypeScript

Short description:

To detect if the user is a person or a company and call the right function, TypeScript has a feature called type guard. Type guard functions are simple functions that return a Boolean indicating whether a condition is met or not. By using type guards, you can explicitly define the type of the user object. However, the text contains some confusing parts.

What happened here is you want to detect if the user is a person or a company and call the right function. And have also the benefit from TypeScript, for instance, as you can notice here, if I check if the person is a person in this line, basically, TypeScript doesn't know that this user is a person. But I want to be express with my code.

How can I do this? TypeScript has a cool feature called type guard. What type guard is a way to create function that allows TypeScript to detect what you want to do. For instance, in this case, I want to say, okay, I want to create a function that accepts the user and returns something that says, okay, the user is a person or not. What type functions are basically a simple function like this? That should return a Boolean. If it's true, you meet the condition, otherwise not.

How this type guard works, basically, you can do this, use person. User is a person. You are saying to TypeScript, in this way, okay, if the result of this function is true, user is a person. Otherwise is another kind of user. And we have also to implement it. How? Basically, it's a simple function that accepts the user, and you can do, for instance, this for the solution. Fiscal code is part of the user.

Now there is another... What is the problem? Sorry. Person. User. Fiscal code in user. Why? Fuck, God! Sorry. I can move to the solution. It's more easy. Also because right here it's sort of a mess. Sorry. Okay. Basically, I don't know what is it. This is another... Let me go back. Sorry.

QnA

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

React's Most Useful Types
React Day Berlin 2023React Day Berlin 2023
21 min
React's Most Useful Types
Top Content
Watch video: React's Most Useful Types
Today's Talk focuses on React's best types and JSX. It covers the types of JSX and React components, including React.fc and React.reactnode. The discussion also explores JSX intrinsic elements and react.component props, highlighting their differences and use cases. The Talk concludes with insights on using React.componentType and passing components, as well as utilizing the react.element ref type for external libraries like React-Select.
TypeScript and React: Secrets of a Happy Marriage
React Advanced Conference 2022React Advanced Conference 2022
21 min
TypeScript and React: Secrets of a Happy Marriage
Top Content
React and TypeScript have a strong relationship, with TypeScript offering benefits like better type checking and contract enforcement. Failing early and failing hard is important in software development to catch errors and debug effectively. TypeScript provides early detection of errors and ensures data accuracy in components and hooks. It offers superior type safety but can become complex as the codebase grows. Using union types in props can resolve errors and address dependencies. Dynamic communication and type contracts can be achieved through generics. Understanding React's built-in types and hooks like useState and useRef is crucial for leveraging their functionality.
Making Magic: Building a TypeScript-First Framework
TypeScript Congress 2023TypeScript Congress 2023
31 min
Making Magic: Building a TypeScript-First Framework
Top Content
Daniel Rowe discusses building a TypeScript-first framework at TypeScript Congress and shares his involvement in various projects. Nuxt is a progressive framework built on Vue.js, aiming to reduce friction and distraction for developers. It leverages TypeScript for inference and aims to be the source of truth for projects. Nuxt provides type safety and extensibility through integration with TypeScript. Migrating to TypeScript offers long-term maintenance benefits and can uncover hidden bugs. Nuxt focuses on improving existing tools and finds inspiration in frameworks like TRPC.
Stop Writing Your Routes
Vue.js London 2023Vue.js London 2023
30 min
Stop Writing Your Routes
Designing APIs is a challenge, and it's important to consider the language used and different versions of the API. API ergonomics focus on ease of use and trade-offs. Routing is a misunderstood aspect of API design, and file-based routing can simplify it. Unplugging View Router provides typed routes and eliminates the need to pass routes when creating the router. Data loading and handling can be improved with data loaders and predictable routes. Handling protected routes and index and ID files are also discussed.
Faster TypeScript builds with --isolatedDeclarations
TypeScript Congress 2023TypeScript Congress 2023
24 min
Faster TypeScript builds with --isolatedDeclarations
Top Content
This talk discusses the performance issues in TypeScript builds and introduces a new feature called isolated declarations. By running the compiler in parallel and using isolated modules, significant performance gains can be achieved. Isolated declarations improve build speed, compatibility with other tools, and require developers to write types in code. This feature has the potential to further increase performance and may be available in TypeScript soon.
Full-stack & typesafe React (+Native) apps with tRPC.io
React Advanced Conference 2021React Advanced Conference 2021
6 min
Full-stack & typesafe React (+Native) apps with tRPC.io
Top Content
Alex introduces tRPC, a toolkit for making end-to-end type-safe APIs easily, with auto-completion of API endpoints and inferred data from backend to frontend. tRPC works the same way in React Native and can be adopted incrementally. The example showcases backend communication with a database using queries and validators, with types inferred to the frontend and data retrieval done using Prisma ORM.

Workshops on related topic

React, TypeScript, and TDD
React Advanced Conference 2021React Advanced Conference 2021
174 min
React, TypeScript, and TDD
Top Content
Featured WorkshopFree
Paul Everitt
Paul Everitt
ReactJS is wildly popular and thus wildly supported. TypeScript is increasingly popular, and thus increasingly supported.

The two together? Not as much. Given that they both change quickly, it's hard to find accurate learning materials.

React+TypeScript, with JetBrains IDEs? That three-part combination is the topic of this series. We'll show a little about a lot. Meaning, the key steps to getting productive, in the IDE, for React projects using TypeScript. Along the way we'll show test-driven development and emphasize tips-and-tricks in the IDE.
Mastering advanced concepts in TypeScript
React Summit US 2023React Summit US 2023
132 min
Mastering advanced concepts in TypeScript
Top Content
Featured WorkshopFree
Jiri Lojda
Jiri Lojda
TypeScript is not just types and interfaces. Join this workshop to master more advanced features of TypeScript that will make your code bullet-proof. We will cover conditional types and infer notation, template strings and how to map over union types and object/array properties. Each topic will be demonstrated on a sample application that was written with basic types or no types at all and we will together improve the code so you get more familiar with each feature and can bring this new knowledge directly into your projects.
You will learn:- - What are conditional types and infer notation- What are template strings- How to map over union types and object/array properties.
Deep TypeScript Tips & Tricks
Node Congress 2024Node Congress 2024
83 min
Deep TypeScript Tips & Tricks
Top Content
Featured Workshop
Josh Goldberg
Josh Goldberg
TypeScript has a powerful type system with all sorts of fancy features for representing wild and wacky JavaScript states. But the syntax to do so isn't always straightforward, and the error messages aren't always precise in telling you what's wrong. Let's dive into how many of TypeScript's more powerful features really work, what kinds of real-world problems they solve, and how to wrestle the type system into submission so you can write truly excellent TypeScript code.
Best Practices and Advanced TypeScript Tips for React Developers
React Advanced Conference 2022React Advanced Conference 2022
148 min
Best Practices and Advanced TypeScript Tips for React Developers
Top Content
Featured Workshop
Maurice de Beijer
Maurice de Beijer
Are you a React developer trying to get the most benefits from TypeScript? Then this is the workshop for you.In this interactive workshop, we will start at the basics and examine the pros and cons of different ways you can declare React components using TypeScript. After that we will move to more advanced concepts where we will go beyond the strict setting of TypeScript. You will learn when to use types like any, unknown and never. We will explore the use of type predicates, guards and exhaustive checking. You will learn about the built-in mapped types as well as how to create your own new type map utilities. And we will start programming in the TypeScript type system using conditional types and type inferring.
Building Your Own Custom Type System
React Summit 2024React Summit 2024
38 min
Building Your Own Custom Type System
Featured Workshop
Kunal Dubey
Kunal Dubey
I'll introduce the audience to a concept where they can have end-to-end type systems that helps ensure typesafety across the teams Such a system not only improves communication between teams but also helps teams collaborate effectively and ship way faster than they used to before. By having a custom type system, teams can also identify the errors and modify the API contracts on their IDE, which contributes to a better Developer Experience. The workshop would primarily leverage TS to showcase the concept and use tools like OpenAPI to generate the typesystem on the client side. 
Frictionless Development With Unified Type System
JSNation 2024JSNation 2024
113 min
Frictionless Development With Unified Type System
Featured Workshop
Ejiro Asiuwhu
Ejiro Asiuwhu
Imagine developing where frontend and backend sing in harmony, types dance in perfect sync, and errors become a distant memory. That's the magic of TypeScript Nirvana!
Join me on a journey to unveil the secrets of unified type definitions, the key to unlocking frictionless development. We'll dive into:
- Shared language, shared love: Define types once, share them everywhere. Consistency becomes your BFF, errors your worst nightmare (one you'll rarely see).- Effortless coding: Ditch the manual grind of type checking. TypeScript's got your back, freeing you to focus on building awesomeness.- Maintainability magic: With crystal-clear types guiding your code, maintaining it becomes a walk in the park. More time innovating, less time debugging.- Security fortress: TypeScript's type system shields your app from common vulnerabilities, making it a fortress against security threats.