Better Programming

Advice for programmers.

Follow publication

Member-only story

5 TypeScript Libraries to Improve Your Codebase

Jose Granja
Better Programming
Published in
6 min readSep 19, 2022
Image by Author
Image by Author

The TypeScript language has done anything but grow in the past years. It has been rated as the favorite language for many web developers. It is becoming less and less frequent to have to be working in a plain JavaScript codebase.

However, sometimes TypeScript is not used to its fullest potential. Too many castings or the use of any are amongst the most frequent mistakes.

In this article, we will see a list of libraries that will enhance your TypeScript experience and increase your confidence in its static typing. Those minimal libraries will boost any developer's ergonomics.

1. zod

The weak link of TypeScript is that is only validated at compile time. Once it is parsed and built, all types are removed. That might lead to some undesired bugs when:

  • the compiler is trusting the developer with some assumptions (use of any, ts-expect-error, casting, etc…)
  • the network is returning a different REST schema than expected.

Let’s see an example of the latter:

In the above code, the compiler is trusting that the network will be returning a JSON User object with a name and email properties. If that turns out not to be true we will be facing some problems in production. Unfortunately, that can only be found at runtime.

With zod we can define a schema that will be also validated at runtime.

Let’s see a refactor of the previous code with the usage of zod

We can choose how we deal with errors. In the above example the UserSchema.parse will throw an error at runtime.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Jose Granja
Jose Granja

Written by Jose Granja

Top Writer @Medium | 1M+ Views | Lead FE @Lingoda | I write weekly about web-development topics 📰 Support me at https://dioxmio.medium.com/membership 🙇

Responses (1)

Write a response