Phillippe Santana
PhillCode

PhillCode

Follow
homebadges
Tag

TypeScript

#typescript

More content

Read more stories on Hashnode


Articles with this tag

Mastering OOP with TypeScript: An In-Depth Look at Encapsulation

Jan 27, 20235 min read

Object-Oriented Programming (OOP) is a popular paradigm that's been widely used for decades. It is a powerful tool that allows us developers to model...

Mastering OOP with TypeScript: An In-Depth Look at Encapsulation

NodeJS Console App with TypeScript, linting and testing

Oct 24, 20223 min read

A quick tutorial on how to start a project for a Console App, in NodeJS, with support for TypeScript, linting and testing. ยท Let's dive right into it,...

NodeJS Console App with TypeScript, linting and testing

Enums should always be singular

Aug 25, 20222 min read

Well... not always, but most of the time. Learn some good reasons why ๐Ÿ˜‰ ยท Use the singular form, enum OrderStatus instead of enum OrderStatuses, and...

Enums should always be singular

Better data validation with Guard Clauses

Mar 3, 202216 min read

Let's use Defensive Programming to make sure that invalid data never makes it again! ยท Have you ever heard of Defensive Programming and the Fail-Fast...

Better data validation with Guard Clauses

How to achieve data consistency with TypeScript

Mar 3, 20226 min read

One of the basics of the Object-Oriented programming is Encapsulation, which aims to never let our domain models enter an invalid state. Think about...

How to achieve data consistency with TypeScript

Resolving Dependencies Once per HTTP Request with InversifyJS Scoped Containers

Feb 19, 20226 min read

Learn how to resolve dependencies once per HTTP request with InversifyJS, while still maintaining application-wide singleton dependencies. ยท Hey there!...

Resolving Dependencies Once per HTTP Request with InversifyJS Scoped Containers