Blog
-
Build Visual Workflows with n8n and Automate Everything
As a full-stack developer working mostly with JavaScript, I often build internal tools and data pipelines. I found myself writing a lot of boilerplate Node.js code to glue together APIs and databases — until I discovered n8n. Read more →
Published on July 14, 2025
#Generative AI -
Building My First MCP Server with TypeScript: A Beginner’s Journey
As someone deeply interested in LLM-based Agentic workflows, I recently took into a new challenge: building my first Model Context Protocol (MCP) server using TypeScript. This post walks through the process—from zero to a working MCP server—and what I learned along the way. There are many articles in the internet which is explained in Python. Here, I wanted to use my most familiar JavaScript as a programming language. Read more →
Published on July 7, 2025
#Generative AI -
API Documentation for NestJS
This time we are going to learn about how to create API documentation for NestJS application using Swagger. There are many ways in the world, let's focus on Swagger which is NestJS official preference. Read more →
Published on May 26, 2025
#NestJS -
How to Use Redis with Replication and Automatic Failover
Redis is an in memory storing giant in the industry. Read more →
Published on April 9, 2025
#Redis -
Connecting Database with NestJS Using Prisma ORM
Time to connect NestJS application with a database. There are many databases can be connected with NestJS, including Sql or NoSql types. Choosing a right database is another crucial decision in the application's architecture. Today, let's focus on connect with the PostgreSQL database - a powerful popular relational database. Read more →
Published on April 6, 2025
#NestJS -
My Mostly Used Docker Commands
Mostly used Docker commands collection by me. Read more →
Published on April 03, 2025
#Docker -
Next.js Deployment to AWS Amplify: Environment Variable Issue & Fix
Recently, I had to spent hours to figure it out environment variable issue on NextJS deployment to AWS Amplify. Read more →
Published on March 29, 2025
#NextJS -
Setting up NestJS Project
Here let's go through the setting up new NestJS project with basic features. Read more →
Published on March 27, 2025
#NestJS -
What You Need to Know Before Starting a NestJS Project
NestJS has quickly become one of the most popular Node.js progressive frameworks for building scalable and maintainable server-side applications. The patterns are followed by Angular's architecture and fully support with TypeScripts. NestJS brings structure and strong typing to the fast-paced world of REST API developments. Read more →
Published on March 26, 2025
#NestJS -
Why NestJS Became My favourite Node.js Framework (After Years of Express.js)
After spending nearly a decade building backend applications with Express.js, I thought I had everything I needed. Express is fast, easy to understand, and can build just about anything. But as my projects grew larger, so did the complexity. I started facing challenges like maintaining a clean folder structure, managing dependency injection manually, code complexity and struggling with testability. Read more →
Published on March 25, 2025
#NestJS