DEV Community

Discussion on: Can we say that JS can be compiled on Node.js? [Novice Quesiton]

Collapse
 
rhymes profile image
rhymes

NodeJS contains v8 which is a JS engine written in C++ (the same that Chrome contains).

It handles compilation, garbage collection and optimizations.

Node is written in both C++ and JS. Python is written in C and Python.