Honlsoft logo

Honlsoft

BlogProjectsAboutLinksFitness

Tag archive

Posts tagged Typescript

3 posts tagged with Typescript.

August 30, 2021

Building APIs: Generating API Clients with OpenAPI Generator

APIs are one of the basic building blocks of modern software architectures. With the proliferation of HTTP based APIs, facilitating API consumption with minimal effort becomes crucial. The bridge between programming languages and APIs is to use a programmatic API specification that defines the contracts of the API.

July 20, 2021

Typescript Tips: null(and undefined) Checking

Null is often described as the million dollar problem or billion dollar mistake. There are so many times when a null check is needed in code that it can be easy to forget them. Javascript compounds this with the additional special case of undefined.

July 09, 2021

Typescript Tips: Destructuring Assignments

Typescript has become my favorite language to use during web development. Most of all, I love the type safety. However, there are so many features to the language it's easy for little useful tidbits to get forgotten about.