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.

Ipseeta Priyadarshini

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

JavaScriptTypeScriptJavaPython

Frontend

ReactNext.jsTailwind CSSHTML/CSS

Backend

Node.jsExpress.jsREST APIsGraphQLJWT / OAuth

AI / LLM

OpenAI APIPrompt EngineeringVision / Multimodal AI

Databases

MongoDB

DevOps & Tools

GitCI/CDVercel

Projects

Things I've built

What I'm Working On

Current focus areas

Building full stack apps with Next.js
AI-powered web applications
Modern UI/UX with React & Tailwind

Blog

Latest writing

View all
The 2-Minute Rule for Learning New Technologies
1 min read

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
4 min read

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,

HashnodeCustom Domain
Adding AI Features to Your Next.js App Without Overengineering It
7 min read

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

AINext.jsopenai
How AI Changed My Coding Workflow: Real Examples That Boosted My Productivity
9 min read

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

AI
Securely Saving Passwords in MongoDB Through Node.js
5 min read

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

MongoDBNode.js
Pm2 Cheat Sheet
1 min read

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