Tag Node js

Microservices in NestJS: Powerful Design Patterns for Flexibility, Resilience, and Scalability

Sticky post

Microservices architecture has become the backbone of modern, scalable, and resilient applications. In this article, we’ll explore powerful design patterns that make microservices shine, specifically in the context of NestJS, a progressive Node.js framework. 1. 🛡️ Gateway Pattern The Gateway… Continue Reading →

SOLID Principles in NestJS

NestJS is a powerful framework for building efficient and scalable server-side applications. Leveraging TypeScript and strong design patterns, it encourages developers to write clean, maintainable, and testable code. One way to achieve this is by applying SOLID principles. What are… Continue Reading →

Covid-19 Tracker Custom API

Real time covid-19 tracker api using node js & express js. below plugin are used to implement API: CORS used for allow Access-Control-Allow-Origin for that need to use middleware : app.use(cors()). csv-parser can convert CSV into JSON at at rate of… Continue Reading →

How to enable HTTPS in Node js REST API

For HTTPS Enable we need to install https from npm package : use the following command [  npm i htps –save  ] For Free SSL Certificate need to create selfsigned.key and selfsigned.crt files. Go to Create a Self-Signed SSL Certificate   var fs =… Continue Reading →

Basic Interview Question For Node JS

What Is Node.js? Node.js is a powerful framework developed on Chrome’s V8 JavaScript engine that compiles the JavaScript directly into the native machine code. It is a lightweight framework used for creating server-side web applications and extends JavaScript API to offer usual… Continue Reading →

Mail API with Node.js, Express

Creating the Application: 1. Fire up your terminal and create a new folder for the application. mkdir node-api 2. Initialize the application with a package.json file Go to the root folder of your application and type npm init to initialize your app… Continue Reading →

Create Restful CRUD API with Node.js, Express and MongoDB

Creating the Application: 1. Fire up your terminal and create a new folder for the application. mkdir node-api 2. Initialize the application with a package.json file Go to the root folder of your application and type npm init to initialize your app… Continue Reading →

Build Your Own Web API With Express Js and Angular JS

In this post we will use Expressjs framework to create Web API that return list of student, and we’ll consume it using AngularJs. In order to install Nodejs you can see Install & run your first application Nodejs. In order… Continue Reading →

© 2024 TapanAcharjee

Up ↑