Name Date Size

..25-Oct-20244 KiB

.bazelrcH A D25-Oct-20241.2 KiB

.clang-formatH A D25-Oct-2024191

.clang-tidyH A D25-Oct-2024689

.editorconfigH A D25-Oct-2024147

.flake8H A D25-Oct-2024339

.git-blame-ignore-revsH A D25-Oct-20241.4 KiB

.gitattributesH A D25-Oct-2024299

.github/H25-Oct-20244 KiB

.gitignoreH A D25-Oct-20242.2 KiB

.gnH A D25-Oct-20241.2 KiB

.mailmapH A D25-Oct-2024591

.style.yapfH A D25-Oct-202434

.vpythonH A D25-Oct-20243 KiB

.vpython3H A D25-Oct-20242.5 KiB

.ycm_extra_conf.pyH A D25-Oct-20245.5 KiB

AUTHORSH A D25-Oct-20249.9 KiB

base/trace_event/common/H25-Oct-20244 KiB

bazel/H25-Oct-20244 KiB

BUILD.bazelH A D25-Oct-2024138.4 KiB

BUILD.gnH A D25-Oct-2024230.5 KiB

build_overrides/H25-Oct-20244 KiB

CODE_OF_CONDUCT.mdH A D25-Oct-2024459

codereview.settingsH A D25-Oct-2024242

COMMON_OWNERSH A D25-Oct-2024721

custom_deps/H25-Oct-20244 KiB

DEPSH A D25-Oct-202422.9 KiB

DIR_METADATAH A D25-Oct-2024443

docs/H25-Oct-20244 KiB

ENG_REVIEW_OWNERSH A D25-Oct-2024232

gni/H25-Oct-20244 KiB

include/H25-Oct-20244 KiB

infra/H25-Oct-20244 KiB

INFRA_OWNERSH A D25-Oct-202489

INTL_OWNERSH A D25-Oct-202473

lib.unstripped/H25-Oct-20244 KiB

libv8_shared.soH A D25-Oct-2024133

LICENSEH A D25-Oct-20243.1 KiB

LICENSE.fdlibmH A D25-Oct-2024250

LICENSE.strongtalkH A D25-Oct-20241.4 KiB

LICENSE.v8H A D25-Oct-20241.5 KiB

LOONG_OWNERSH A D25-Oct-202467

MIPS_OWNERSH A D25-Oct-202464

OWNERSH A D25-Oct-20241.1 KiB

PPC_OWNERSH A D25-Oct-2024103

PRESUBMIT.pyH A D25-Oct-202420.5 KiB

README.mdH A D25-Oct-2024964

RISCV_OWNERSH A D25-Oct-202481

S390_OWNERSH A D25-Oct-2024103

src/H25-Oct-20244 KiB

test/torque/H25-Oct-20244 KiB

testing/H25-Oct-20244 KiB

third_party/H25-Oct-20244 KiB

tools/H25-Oct-20244 KiB

WATCHLISTSH A D25-Oct-20244.9 KiB

WORKSPACEH A D25-Oct-20242 KiB

README.md

1V8 JavaScript Engine
2=============
3
4V8 is Google's open source JavaScript engine.
5
6V8 implements ECMAScript as specified in ECMA-262.
7
8V8 is written in C++ and is used in Google Chrome, the open source
9browser from Google.
10
11V8 can run standalone, or can be embedded into any C++ application.
12
13V8 Project page: https://v8.dev/docs
14
15
16Getting the Code
17=============
18
19Checkout [depot tools](http://www.chromium.org/developers/how-tos/install-depot-tools), and run
20
21        fetch v8
22
23This will checkout V8 into the directory `v8` and fetch all of its dependencies.
24To stay up to date, run
25
26        git pull origin
27        gclient sync
28
29For fetching all branches, add the following into your remote
30configuration in `.git/config`:
31
32        fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
33        fetch = +refs/tags/*:refs/tags/*
34
35
36Contributing
37=============
38
39Please follow the instructions mentioned at
40[v8.dev/docs/contribute](https://v8.dev/docs/contribute).
41