2021-05-11 23:14:34 +02:00
|
|
|
V8 is Google's open source high-performance JavaScript and WebAssembly engine,
|
|
|
|
written in C++. It is used in Chrome and in Node.js, among others.
|
2014-08-12 20:15:53 +02:00
|
|
|
|
2021-05-11 23:14:34 +02:00
|
|
|
V8 implements ECMAScript and WebAssembly. V8 can run standalone, or can be
|
|
|
|
embedded into any C++ application.
|
2014-08-12 20:15:53 +02:00
|
|
|
|
2021-05-11 23:14:34 +02:00
|
|
|
V8 compiles and executes JavaScript source code, handles memory allocation for
|
|
|
|
objects, and garbage collects objects it no longer needs. V8's stop-the-world,
|
|
|
|
generational, accurate garbage collector is one of the keys to V8's performance.
|
2014-08-12 20:15:53 +02:00
|
|
|
|
2021-05-11 23:14:34 +02:00
|
|
|
V8's Git repository is located at https://chromium.googlesource.com/v8/v8.git,
|
|
|
|
with an official mirror on GitHub: https://github.com/v8/v8.
|
2014-08-12 20:15:53 +02:00
|
|
|
|
2021-05-11 23:14:34 +02:00
|
|
|
WWW: https://v8.dev/
|