Fastify API with Postgres and Drizzle ORM
Before we start, we will need Node.js installed.
General Setup
Let's create a new directory for our API first:
⛶mkdir fastify-api
cd fastify-apiNow, we need to initialize a new project:
⛶n...