Member-only story
Creating a REST API with NestJS — Part 03 — Services, PostgreSQL and TypeORM
In this article series, we continue developing our REST API using NestJS as a framework of choice, now implementing our user service, adding real data for our application and storing it in a local PostgreSQL database.

Before we start…
This is the part 03 of a few articles that I am using to create a REST API based with NestJS. If it is your first time here, please check my first article in this link:
What we are going to do?
We are continuing to develop the article from the first episode. If you want to code together, please use my branch from the end of the second article, here.
We already have a scaffold, with the CRUD endpoints set, validating user entries but not dealing with actual data there. What we are going to focus in this article is to implement these CRUD operations and store it in a PostgreSQL with the help of typeORM