AVakash vishwakarmainakadev.hashnode.dev·Feb 10, 2024 · 1 min readWorking of Node js :an overviewBasically, the internal structure of Node js consists of a v8 engine and libUV .The v8 engine is based on c to compile js and libUV comes with an event loop and thread pool.Now, when we write the command node <filename.js>,the first thing that takes ...00