Learning NestJS Part 3: Data Caching

This is the third part of the NestJS learning series. Read Part 1 here – Getting Started Read Part 2 here – Connecting to Database In this part, we will learn about caching. This part of the series will cover the following topics: Enabling caching at the application level Enabling caching at the Route Level In-memory cachingContinueContinue reading “Learning NestJS Part 3: Data Caching”

Learning NestJS Part 2: Connecting to Database

This is the second part of the NestJS learning series. Part 1 covered setting up the Nest project. In this part, we will cover the following topics: Connecting to the SQL Azure database Setting up Connection String Endpoints for CRUD operations Setting Up the Database MySQL Azure has a database called nomadcoder. In this article, weContinueContinue reading “Learning NestJS Part 2: Connecting to Database”

Learning NestJS Part 1: Getting Started

In this section, we’ll begin working with NestJS. This part of the learning series covers the following topics: Installation Creating the First Controller Creating the First Service Adding a GET Endpoint Adding a POST Endpoint For now, we will manage data using a JavaScript array. In future sections, we’ll learn how to connect to aContinueContinue reading “Learning NestJS Part 1: Getting Started”