DEV Community

Discussion on: Node.js Under The Hood #7 - The new V8

Collapse
 
icecoffee profile image
Atulit Anand

Great article sir but this led me to another question.
Do node.js and chrome literally uses same piece of software?
If so does that mean I can't run node.js without installing chrome?
I would really appreciate you answering. Have a great day.

Collapse
 
_staticvoid profile image
Lucas Santos

Thanks for the comment!

Node.js does not use Chrome, Chrome is the whole browser with rendering engine, JavaScript engine and a lot of other moving parts. Node uses only V8, the same JavaScript engine as Chrome or Edge.