Shalon N. Ngiginjeri-ngigi.hashnode.dev·Sep 17, 2024Dependency injection in NestJSGetting started with nestjs An overview of nestjs - modules, controllers and providers Dependency injection in nestjs [you are here] Setting up a database - nestjs, postgresql and sequelize [WIP] What is Dependency Injection (DI)? Dependency inj...DiscussNestjs from scratchdependency injection
Usama waqasusamawaqastechblog.hashnode.dev·Sep 16, 2024Mastering Controllers in Next.js DevelopmentWhat is a Controller? A controller in NestJS is a class that handles incoming HTTP requests and routes them to appropriate methods. It acts as the entry point for incoming requests, processing them and returning the appropriate response. Key Concepts...DiscussJavaScript
Usama waqasusamawaqastechblog.hashnode.dev·Sep 16, 2024what is Controller in Nest jsA controller in NestJS is like a traffic director for your web application. It decides what should happen when a specific URL is requested. Here's a simple analogy and explanation: Analogy Imagine a restaurant: Customer: The person who makes a reque...DiscussJavaScript
Wiljeder Filhowiljeder.hashnode.dev·Sep 16, 2024Build Your Own Chatbot with AWS Bedrock and NestJS: A Step-by-Step GuideIntegrating a Generative AI model from AWS Bedrock into a NestJS-based chatbot API offers a powerful approach to building interactive applications. This guide simplifies the process, guiding you step-by-step from setting up your environment to creati...Discuss·33 readsnestjs
Shalon N. Ngiginjeri-ngigi.hashnode.dev·Sep 16, 2024Dependency Injection in JSWhat is Dependency Injection (DI)? DI is a programming pattern where dependencies are passed in as parameters instead of instantiation inside the function or class. Let’s take a look at an example of a class that uses another class to fetch data from...DiscussNestjs from scratchdependency injection
Muhammad Sufiyaninnosufiyan.hashnode.dev·Sep 14, 2024Task # 3 Deploying a Backend NestJS Project on AWS EC2 InstanceTask Overview: Launch an AWS EC2 instance. Connect to the instance via SSH. Download and set up a basic NestJS project from GitHub. Run the server and access your API. Step 1: Launching an EC2 Instance Log in to the AWS Console: Go to the AWS...Discuss·48 readsAWS Learningnestjs
Usama waqasusamawaqastechblog.hashnode.dev·Sep 13, 2024Introduction to NestJS ModulesWhat is a Module in NestJS? In NestJS, a module is a class annotated with the @Module decorator. Modules are used to organize your application into cohesive blocks of functionality. Each module can encapsulate related controllers, providers, and othe...DiscussJavaScript
Sergio Suárezsergiosuarezdev.hashnode.dev·Sep 13, 2024NestJS 10 — Descubre las novedadesNestJS ha lanzado hace unos meses su versión 10 y viene cargada de mejoras y nuevas funcionalidades que harán las delicias de los desarrolladores. Después de varios meses de pruebas y algunos que otro proyecto, te cuento las principales novedades de ...Discussnestjs
Usama waqasusamawaqastechblog.hashnode.dev·Sep 12, 2024Nest jswhy do we use Nest js: Organized Code: Helps keep your code well-organized and easy to manage. TypeScript: Uses TypeScript, which helps catch errors early and makes your code safer. Easier Testing: Built-in tools to make testing your code sim...Discussnestjs
Shalon N. Ngiginjeri-ngigi.hashnode.dev·Sep 9, 2024Nestjs from scratch: modules, controllers and providersGetting started with nestjs An overview of nestjs - modules, controllers and providers [You are here] Dependency injection in nestjs Setting up a database - nestjs, postgresql and sequelize [WIP] Overview Creating a new project using nest new y...DiscussNestjs from scratchnestjs