37
It's Prisma Time - Introduction
Hi Folks π and welcome back,
Today I want to start a new series about Prisma.
But before starting I want to explain the reason why of this series.
In the last months I spent more time using ORM in the node eco-system. Most of the time I used typeorm. In my opinion Typeorm is a great ORM but creates entities and managing them sometimes it's not so easy, especially if you love to use typescript without classes. But one day in my twitter's wall appeared this tweet of @Matteo Collina that spoke about prisma, so I decided to spend some of my free time to understand better this tool.

As you can imagine, it left me good impressions so I decide to share them with you using this series.
Today I want to start a new series about Prisma.
But before starting I want to explain the reason why of this series.
In the last months I spent more time using ORM in the node eco-system. Most of the time I used typeorm. In my opinion Typeorm is a great ORM but creates entities and managing them sometimes it's not so easy, especially if you love to use typescript without classes. But one day in my twitter's wall appeared this tweet of @Matteo Collina that spoke about prisma, so I decided to spend some of my free time to understand better this tool.

As you can imagine, it left me good impressions so I decide to share them with you using this series.
In this series, I'm going to show you how to set up a project with Prisma and how it can work in your codebase. I'm going to try to create shot articles with only one goal for each article, to permit you to understand better the goal and don't switch context during the reading.
In this series I am not going to show you how to create a repository to split the data access layer with the business logic layer or how to structure your project to have a clean code, that's not the goal of the series, and I know that already exist many books and articles that speak about it.
A little preamble: I don't love so much using ORM in my code, but sometimes they help the team to increase its velocity. Despite everything, it's important to check the queries generated by the ORM because sometimes they aren't optimized. In these cases, it's a good solution writing your query in order to improve the velocity of its execution.
Let's start with an introduction of Prisma.
In this article I picked some infos about Prisma from its site. This helps you to have an idea of what it is and which are they goals.
In this article I picked some infos about Prisma from its site. This helps you to have an idea of what it is and which are they goals.
Prisma is an open source next-generation ORM. It consists of the following parts:
It's important to remember that if you prefer using javascript without typescript, you can choose this way without any problem because Prisma guarantees both solutions.
Prisma's main goal is to make application developers more productive when working with databases:
Prima allow us to connect to the major SQL and NOSQL services.
I think that as an introduction of the tool and to give you an idea about it, it may be all. If you are curious and you want to go deep inside about Prisma, in its documentation you can find more info.
I think for today it's all, but before ending this article, I wish to thank Prisma for the cover of this series, the original image is hosted in the Prisma facebook account at this link
So see you in the next article where we'll start to setup our project.
Bye bye π
Bye bye π
37