I am trying to understand internal working of javascript and node.js v8 engines, I understand both use single thread event loop. And javascript engine uses execution context loaded into call stack.
This figure is my reference to understand internal working of JS

And node.js maintains thread pool etc, so internal working of node.js and JS is different? Is my understanding correct , can someone briefly explain?