What is the relationship between Node.js and V8?

Technology CommunityCategory: Node.jsWhat is the relationship between Node.js and V8?
VietMX Staff asked 3 years ago

V8 is the Javascript engine inside of node.js that parses and runs your Javascript. The same V8 engine is used inside of Chrome to run javascript in the Chrome browser. Google open-sourced the V8 engine and the builders of node.js used it to run Javascript in node.js.