SKSarvesh Kadaminsarveshkadam.hashnode.dev·Mar 26 · 4 min readFrom CSR to SEO-Friendly SSG + CSR in an Existing Vite App (Using Vike)When we launched HonestSIP, it was a straightforward Vite + React SPA.The product experience was solid: fast interactions, smooth route transitions, and zero server complexity. But we hit a practical 00
SKSarvesh Kadaminsarveshkadam.hashnode.dev·Mar 5 · 5 min readHandling Long-Running API Requests with Webhooks in Node.jsWhile working on a data migration API for MongoDB collections, we encountered issues with large datasets. Processing over 10,000 records took more than 4 minutes — longer than our API gateway's 3-minu00
SKSarvesh Kadaminsarveshkadam.hashnode.dev·Oct 29, 2020 · 11 min readGetting started with NPM(Node Package Manager)In this article, we are going to discuss what is NPM (Node Package Manager) and how can we use it in our project. This is the third part of my Node Module series NPM Overview: So what exactly is Node Package Manager? The package is a piece of code th...00
SKSarvesh Kadaminsarveshkadam.hashnode.dev·Oct 24, 2020 · 4 min readHow to use the NodeJS Core (Native) modules?In the last article, we discussed how to import our own files in NodeJS which included function, Objects, function constructor, and ES6 classes. You can find that article over here. Today we are going to discuss how we can import and use Node Core(Na...00
SKSarvesh Kadaminsarveshkadam.hashnode.dev·Oct 19, 2020 · 5 min readHow to use Modular patterns in NodeJS?Modular Pattern is one of the fundamental features of Node. When building an application, as our application/code becomes complex we cannot put our entire code in one single file. As this becomes unmanageable, we use node modular pattern to write dif...00