Senior Full Stack Engineer
Hi, I'm Ipseeta
Over a decade of experience building scalable APIs, backend systems, and high-performance applications with Node.js and modern technologies.

About Me
From IIIT to over a decade of building & writing
I graduated with a B.Tech in Information Technology from IIIT in 2013. Since then I've spent over a decade as a full stack engineer across four to five companies, building end-to-end applications, from intuitive interfaces to scalable backend systems, with React, Next.js, Node.js, TypeScript, and MongoDB.
Writing has been part of the journey from the start. My technical articles have been published on SitePoint, Hashnode, and my own blog, covering Node.js and backend engineering, JavaScript fundamentals, and Java. I care about clean architecture, performant APIs, and sharing what I learn along the way.
Away from the keyboard, you'll find me taking photos, spending time with dogs and cats, and keeping my husband on his toes. 馃檪
Skills
Technologies I work with
Languages
Frontend
Backend
AI / LLM
Databases
DevOps & Tools
Projects
Things I've built
Calorie Counter
AI-powered nutrition analysis app with health scoring and recipe video recommendations. Specializes in Indian cuisine.
Style Guru
AI-powered fashion styling app that gives personalized outfit recommendations based on your selfie, occasion, and style preferences.
Skin Analyzer
AI-powered skin analysis app that evaluates your skin and provides personalized skincare recommendations.
Content Moderation API
RESTful API that analyzes text for harmful content using OpenAI, returning confidence scores across risk categories.
Investment Portfolio
Financial visualization app where users enter their details and get a pie chart breakdown of spending and savings.
What I'm Working On
Current focus areas
Blog
Latest writing

The 2-Minute Rule for Learning New Technologies
Developers often feel overwhelmed by the number of frameworks, libraries, and tools released every year. The good news is that you don't need to master everything immediately. When exploring a new tec

How to map a custom domain to your Hashnode blog
Every Hashnode blog starts with a free subdomain, such as yourname.hashnode.dev. It works out of the box. But if you want your blog to live at your own domain, like blog.yourname.com or yourname.com,

Adding AI Features to Your Next.js App Without Overengineering It
AI features are everywhere now: chatbots, image analysis, content generation. But integrating AI into a production Next.js app doesn't have to mean building a complex pipeline. In this post, I'll walk

How AI Changed My Coding Workflow: Real Examples That Boosted My Productivity
A few months ago, I was debugging a small Node.js issue that should have taken five minutes. Instead, I opened about 10 Stack Overflow tabs, skimmed documentation, tried two different fixes, and still

Securely Saving Passwords in MongoDB Through Node.js
It is important to protect sensitive data stored in web application databases from malicious actors. To do this effectively, it is essential that we use hashing instead of storing the data in plaintex

Pm2 Cheat Sheet
Here is a quick cheat sheet of pm2 commands:- Installing pm2 npm install pm2 -g Start and name a process pm2 start app.js --name myApp Start and auto-restart on file change pm2 start app.js --watch