AKAyush Kumar Singhinaks16.hashnode.dev·Jul 21 · 6 min readHow Node.js Handles Multiple Requests with a Single Thread Node.js is widely used for backend development because it can handle many client requests efficiently. One interesting thing about Node.js is that it is often called single-threaded. This raises a com00
AKAyush Kumar Singhinaks16.hashnode.dev·Jul 20 · 8 min readWhat is Node.js? JavaScript on the Server ExplainedJavaScript is one of the most popular programming languages in the world. For many years, it was mainly known as a language used inside web browsers to make websites interactive. It could handle thing00
AKAyush Kumar Singhinaks16.hashnode.dev·Jan 30 · 3 min readCSS Selectors 101: Targeting Elements with PrecisionWhen we start learning CSS, one of the first questions that comes up is:“How does CSS know which HTML element to style?” The answer is CSS selectors. Think of selectors as ways to choose elements from your HTML so you can apply styles to them. Just l...00
AKAyush Kumar Singhinaks16.hashnode.dev·Jan 29 · 3 min readUnderstanding HTML Tags and ElementsWhen we first start learning web development, HTML is the very first thing we come across. It may look simple, but it is the foundation of everything you see on a webpage. In this blog, I’ll explain HTML tags and elements in an easy way, using simple...00
AKAyush Kumar Singhinaks16.hashnode.dev·Jan 29 · 3 min readEmmet for HTML: A Beginner’s Guide to Writing Faster MarkupWhen I first started learning HTML, the most boring part wasn’t understanding tags — it was typing them again and again. Writing <div>, <p>, <ul>, <li> manually felt slow, repetitive, and honestly frustrating. That’s where Emmet comes in. Emmet is on...00