SSSubransu Sekhar Maharanainwebfundamentals.hashnode.dev·Jun 19 · 8 min readModern Database Access: Prisma, Drizzle, and ORMs ExplainedWhere does application data live after a user closes the app? Think about an e-commerce website. A customer creates an account, adds products to the cart, places an order, and then closes the browser.00
SSSubransu Sekhar Maharanainwebfundamentals.hashnode.dev·May 10 · 6 min readThe Node.js Event Loop ExplainedIntroduction One of the most important concepts in Node.js is the: Event Loop The event loop is the reason Node.js can: Handle many users efficiently Perform asynchronous operations Build scalable10
SSSubransu Sekhar Maharanainwebfundamentals.hashnode.dev·May 10 · 6 min readBlocking vs Non-Blocking Code in Node.jsIntroduction One of the biggest reasons Node.js became popular is its ability to handle many requests efficiently. This happens because Node.js uses: Non-blocking operations Asynchronous execution 10
SSSubransu Sekhar Maharanainwebfundamentals.hashnode.dev·May 10 · 5 min readREST API Design Made Simple with Express.jsIntroduction Modern applications constantly communicate with servers. For example: Mobile apps fetch user data Websites send login requests Frontend applications load products from databases This10
SSSubransu Sekhar Maharanainwebfundamentals.hashnode.dev·May 10 · 6 min readMap and Set in JavaScriptIntroduction JavaScript provides several ways to store data. Most beginners start with: Arrays Objects But modern JavaScript also includes two powerful data structures: Map Set These structure00