Multer in NestJs
Multer is a middleware for handling multipart/form data in Node.js applications, including NestJS. It is commonly used for handling file uploads. NestJS is a popular framework for building scalable and maintainable server-side applications with TypeScript. To use Multer in a NestJS application, you can follow these steps: Step 1: Install Multer as a dependency in … Read more
How to install Prisma in NestJS ?
Prisma is an open-source ORM for Node.js and TypeScript. It is a next-generation node.js and typescript ORM. It is used as an alternative to writing plain SQL or using another database access tool such as SQL query builders. While Prisma can be used with plain JavaScript, it embraces TypeScript and provides a level to type safety that goes beyond the guarantees … Read more
What is NestJs? Why NestJs ? Basic information about NestJs
Three main components: Modules A module is a class annotated with a @Modules() decorator. The @module() decorator provides metadata the Nest marks use to organize the application structure. Each application has at least one module A module is a class annotated with a @Modules() decorator. The @module() decorator provides metadata the Nest marks use to … Read more