Blog

A blog using velite. Posts are written in MDX


How to Practically Scale a NestJS Project on the Cloud

How to Practically Scale a NestJS Project on the Cloud

Scaling a NestJS application on the cloud involves several practical steps, including leveraging microservices, using cloud services, and optimizing performance.

September 30, 2024

View Article
Why using NestJS for your next project?

Why using NestJS for your next project?

NestJS is a framework for building efficient, scalable Node.js server-side applications. It uses modern JavaScript, is built with TypeScript and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP (Functional Reactive Programming).

September 25, 2024

View Article
Connecting to Oracle HeatWave

Connecting to Oracle HeatWave

How to connect to an Oracle HeatWave database using Python and cx_Oracle.

September 24, 2024

View Article
`any` Considered as harmful, except for these cases

`any` Considered as harmful, except for these cases

Discover when it's appropriate to use Typescript's `any` type despite its risks. Learn about legitimate cases where `any` is necessary

May 30, 2024

View Article
Deriving vs Decoupling: When NOT to be a Typescript Wizard

Deriving vs Decoupling: When NOT to be a Typescript Wizard

In this book teaser, we discuss deriving vs decoupling your types: when building relationships between your types or segregating them makes sense

May 30, 2024

View Article
How to Strongly type process.env

How to Strongly type process.env

Learn how to strongly type process.env in Typescript by either augmentng global type or validating it at runtime with t3-env.

May 30, 2024

View Article
This pattern will wreck your React App's TS Performance

This pattern will wreck your React App's TS Performance

Imporve React Typescript performance by replacing type & with interface extends. Boost IDE and tsc speed significantly

May 30, 2024

View Article