SNSrekaravarshan N Kinsrekaravarshan.hashnode.dev·Jun 17 · 29 min readPart 4: Where JavaScript Actually RunsWhat no one teaches you about the JavaScript Event Loop — Part 4 of 8 A puzzle in DevTools Open any page in your browser. Open DevTools. Click the Performance tab. Hit the record button (the circle).00
AKAshish Kumarinhelloashish.hashnode.dev·May 22 · 11 min readJavaScript GC: Pauses, Allocation Rate, Frontend JankRandom 30–50ms freezes with no obvious long tasks in the Performance panel often have one root cause: the garbage collector. V8 pauses JavaScript execution to reclaim memory, and if your allocation ra00
MMehtabinmehtabblogs.hashnode.dev·May 10 · 9 min readWhat is Node.js? JavaScript on the Server ExplainedJavaScript is one of the most popular programming languages used by developers worldwide. It is a scripting language mainly used for adding interactions and dynamic behavior to websites. Earlier, Java00
TTejasintejasdevcodes.hashnode.dev·May 9 · 3 min readWhat is Node.js? JavaScript on the Server ExplainedWhat is Node.js? Node.js is a JavaScript runtime environment built on top of Google Chrome’s V8 engine. Earlier, JavaScript could only run inside browsers. But Node.js made it possible to run JavaScri00
JMJanardan Mondalinjanardanm.hashnode.dev·May 7 · 5 min readSetting Up Your First Node.js ApplicationModern web development depends heavily on JavaScript, and one of the biggest reasons for that is Node.js. It allows developers to run JavaScript outside the browser, making it possible to build server00
VPVed Pandeyinvedpandeydev.hashnode.dev·Apr 30 · 4 min readWhat is Node.js? JavaScript on the Server ExplainedWhat are We Gonna Study? Hey there folks! Hope you are doing great and enjoying your dev life. Today we'll be talking about NodeJS, didn't you ever wondered why and how a language meant to be run on a00
TCTao Cheninbabyfish-ct.hashnode.dev·Mar 26 · 15 min readA Node Optimization Idea: Solving GC Bottlenecks Under ConcurrencyWhat If Node.js Could Have Zero-GC Request Handling — Without You Changing a Single Line of Code? A Proposal for a Hybrid Arena + GC Memory Model Baked into the JavaScript Runtime The Problem Nobody 00
DSDiwya sudarshan kaushikindskwebdev.hashnode.dev·Mar 15 · 3 min readNode.js Internals and ArchitectureBasic 1.Javascript is single thread.2.Every Browsers have java script engine.3.JS work different in both environment Node.js and Browser What is Node.JS? Node.js is a runtime environment that allows J00
SMSubhadip Mishrainsubhadipmishra1901.hashnode.dev·Mar 14 · 4 min readEngineering Deep Dive: The Node.js Runtime & Express Middleware ArchitectureIn the world of backend development, Node.js is often praised for being "fast" and "asynchronous." But as engineers, we need to look past the marketing terms. How does a single-threaded environment ou00
AAnandinblog.anands.dev·Mar 11 · 19 min readNode.js Architecture the Engineering Side Here are some questions i wanna ask you - is nodejs just an v8 engine behind the scene? thats it? or is there any difference? why even if the nodejs a single thread process its fast? and how it can 00