NestJS Logging 101: Setting up logging in NestJS with Winston
In this blog post, we will be setting up logging in NestJS with Winston. At the time of writing this blog, the versions used are NestJS@10.4.15 and Winston@3.17.0 Installing Winston Let’s start by installing winston. You can use below commands to add winston to your application. pnpm add winston or npm i winston ...