© 2023 Hashnode
#prisma
In this article, I introduced the side project that I'm building and the tools (stacks) I'm using. And in my last article, I talk about NextAuth and module augmentation. Here I'll share with you some …
Supabase, Prisma, and Next.js for the Full-Stack Win, Part 1 In the modern web development landscape, choosing the right tools for building full-stack applications can be a daunting task. With the ple…
Introduction Domain-Driven Design (DDD) is a software development methodology that emphasizes the importance of modeling business domains to create software that closely aligns with the needs of the o…
Introduction In the world of software development, testing is a critical aspect of ensuring the quality and reliability of a product. Unit tests and end-to-end tests are two important types of tests t…
Microservices in 2023 The microservice architecture is not new (1). On the contrary, it’s a well-written-on topic, with a deep space of exploration into its tradeoffs (2). Lots of folks say you don’t need them (3) and write about their harm…
TL;DR By the end of the tutorial, we will have created a "WishList App" that enables users to save their favorite links for items they wish to buy in the future. We'll also have understood how to buil…
This article shows how to dockerize our NestJS + Prisma application. We go beyond the basics, following the best practices from Dockerfiles and Snyk. Our final Dockerfile looks like this: FROM node:18…
Understanding Prisma If you're a developer, you're likely familiar with the pain of traditional Object-Relational Mapping (ORM) tools. You've probably spent hours trying to get them to work properly, …
Prisma is the next-generation Node.js and TypeScript ORM that streamlines database access, schema migrations, and code generation, enabling developers to build data-driven applications with greater ef…
Prisma is a well-liked ORM (Object-Relational Mapping) tool that enables type-safe and effective database interaction. Many databases are supported, including the well-liked NoSQL database MongoDB, which stores data in a JSON-like format. I…