MDG developermdgdev.xyz·an hour agoNova@1.0 - Despliegue de Backend IIIUna vez creados todos los recursos, el primer paso a configurar son los DTOs. ¿Qué son los DTOs? DTO son las siglas en inglés de Data Transfer Object. Es un patrón de diseño utilizado para transferir datos entre diferentes capas de una aplicación, co...Databases
MDG developermdgdev.xyz·Dec 22, 2024Nova@1.0 - Despliegue de Backend IIUna vez implementado PrismaORM a nivel de base de datos, el siguiente paso es inyectar Prisma en la app de Nestjs Para eso basta con crear un servicio // src/prisma.service.ts import { PrismaClient } from '@prisma/client'; import { Injectable, OnModu...backend
aman Jaiswalamanog.hashnode.dev·Dec 16, 2024What are ORMs? & Understanding Prisma and its ImplementingOfficial Definition ORM stands for Object-Relational Mapping, a programming technique used in software development to convert data between incompatible type systems in object-oriented programming languages. This technique creates a "virtual object da...orm
Diluk Angelodilukangelo.dev·Dec 12, 2024FeaturedMastering Prisma ORM: A Practical Guide to Deployment and CI/CDWhen I first started using Prisma ORM, I was blown away by how it streamlined my database workflows. But when it came to deploying my applications to production, things got tricky. Over time, I learned a lot about how to navigate these challenges. In...8 likes·116 readsprisma
Tojo RODIALSONtojo.hashnode.dev·Nov 22, 2024Guide to Choosing the Ideal ORM for IT ProjectsAn Object-Relational Mapper (ORM) is a programming technique for converting data between incompatible systems using object-oriented programming techniques. 1 In the context of database applications, it simplifies interactions between programming la...orm
M B A R Kmbarkt3sto.hashnode.dev·Nov 1, 2024Prisma ORM: Setting Up with an Express.js Project and PostgreSQLOverview In this article, we will go through the steps required to set up Prisma ORM in an Express.js project specifically for PostgreSQL. This setup will lay the foundation for interacting with your PostgreSQL database through Prisma in future artic...prismaorm
Emmanuel Obeng Twenedelinuxist.hashnode.dev·Oct 29, 2024Step-by-Step Guide to Fullstack Development with Next.js and Lucia AuthenticationIntroduction Authentication and authorization are crucial components of web security, ensuring that users can securely access resources within an application. Authentication is the process of verifying a user’s identity, while authorization determine...28 readsfrontend
Harsh Singhmoreprisma.hashnode.dev·Oct 27, 2024Less Querying, More ChillingType Safety That Just... Works: No typos, no guessing—I just typed user. and the autocomplete took care of the rest. It made me feel like I knew my database inside out, even on a complex project. const user = await prisma.user.findUnique({ where: {...1 likeprisma
Hariharan Reddyhariharanreddy.hashnode.dev·Oct 13, 2024Building a Highly Scalable API for Bulk Data Insertion in Prisma and MongoDBIntroduction In this post, I’ll walk you through building a highly scalable API designed to insert large batches of data efficiently using Prisma and MongoDB. This setup allowed me to handle 100,000 entries, optimizing performance and ensuring stabil...34 readsprisma
Osaro Onaiwuosarodev.hashnode.dev·Oct 12, 2024Mastering Authentication in Next.jsHello, folks! In this blog post, we'll dive deep into a (if not the) very crucial part of most websites- Authentication. This tutorial is the first of 3 parts: Part 1: Setting Up Next.js with a Database (Prisma & SQLite) Part 2: Seeding a Database wi...1 likeNext.js