Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/v8/v8
The official mirror of the V8 Git repository
https://github.com/v8/v8
compiler interpreter javascript javascript-engine virtual-machine
Last synced: 2 months ago
JSON representation
The official mirror of the V8 Git repository
- Host: GitHub
- URL: https://github.com/v8/v8
- Owner: v8
- License: other
- Created: 2014-09-24T15:24:30.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2024-05-23T04:54:24.000Z (7 months ago)
- Last Synced: 2024-05-23T05:49:02.248Z (7 months ago)
- Topics: compiler, interpreter, javascript, javascript-engine, virtual-machine
- Language: C++
- Homepage: https://chromium.googlesource.com/v8/v8.git
- Size: 998 MB
- Stars: 22,749
- Watchers: 964
- Forks: 3,914
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Authors: AUTHORS
Awesome Lists containing this project
- stars - v8/v8
- awesome - v8 - The official mirror of the V8 Git repository (C++)
- awesome-browser-exploit - v8 github mirror(docs within)
- awesome-game-engine-dev - v8 - High-performance JavaScript and WebAssembly engine by _Google_. (Libraries / C++)
- awesome-starred-test - v8/v8 - The official mirror of the V8 Git repository (C++)
- awesome-github-star - v8
- awesome-luooooob - v8/v8 - The official mirror of the V8 Git repository (C++)
- awesome-list - v8
- AwesomeCppGameDev - v8
- StarryDivineSky - v8/v8 - 262 中指定的 ECMAScript。V8 实现了 ECMA-262 中指定的 ECMAScript。V8是用C++编写的,用于谷歌的开源浏览器谷歌浏览器。V8 实现了 ECMA-262 中指定的 ECMAScript。 (JavaScript框架 / 其他_文本生成、文本对话)
- awesome - v8/v8 - The official mirror of the V8 Git repository (C++)
- awesome - v8/v8 - The official mirror of the V8 Git repository (C++)
README
V8 JavaScript Engine
=============V8 is Google's open source JavaScript engine.
V8 implements ECMAScript as specified in ECMA-262.
V8 is written in C++ and is used in Google Chrome, the open source
browser from Google.V8 can run standalone, or can be embedded into any C++ application.
V8 Project page: https://v8.dev/docs
Getting the Code
=============Checkout [depot tools](http://www.chromium.org/developers/how-tos/install-depot-tools), and run
fetch v8
This will checkout V8 into the directory `v8` and fetch all of its dependencies.
To stay up to date, rungit pull origin
gclient syncFor fetching all branches, add the following into your remote
configuration in `.git/config`:fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
fetch = +refs/tags/*:refs/tags/*Contributing
=============Please follow the instructions mentioned at
[v8.dev/docs/contribute](https://v8.dev/docs/contribute).