• Home
Name Date Size #Lines LOC

..--

.github/06-Mar-2025-148

base/trace_event/common/06-Mar-2025-1,150675

bazel/06-Mar-2025-1,3081,186

build_overrides/06-Mar-2025-7456

custom_deps/06-Mar-2025-87

docs/06-Mar-2025-53

gni/06-Mar-2025-904778

include/06-Mar-2025-29,67516,242

infra/06-Mar-2025-3,7533,556

src/06-Mar-2025-1,326,2291,026,883

test/torque/06-Mar-2025-1,4181,230

testing/06-Mar-2025-389221

third_party/06-Mar-2025-89,19065,652

tools/06-Mar-2025-105,16584,614

.bazelrcD06-Mar-20251.2 KiB3227

.clang-formatD06-Mar-2025191 65

.clang-tidyD06-Mar-2025689 2119

.editorconfigD06-Mar-2025147 108

.flake8D06-Mar-2025339 1110

.git-blame-ignore-revsD06-Mar-20251.4 KiB2925

.gitattributesD06-Mar-2025299 87

.gitignoreD06-Mar-20252.2 KiB125124

.gnD06-Mar-20251.2 KiB3125

.mailmapD06-Mar-2025591 1512

.style.yapfD06-Mar-202534 32

.vpythonD06-Mar-20253 KiB9283

.vpython3D06-Mar-20252.5 KiB7261

.ycm_extra_conf.pyD06-Mar-20255.5 KiB18398

AUTHORSD06-Mar-20259.9 KiB279276

BUILD.bazelD06-Mar-2025138.4 KiB3,6703,558

BUILD.gnD06-Mar-2025230.5 KiB6,9596,323

CODE_OF_CONDUCT.mdD06-Mar-2025459 97

COMMON_OWNERSD06-Mar-2025721 3534

DEPSD06-Mar-202522.9 KiB638625

DIR_METADATAD06-Mar-2025443 1211

ENG_REVIEW_OWNERSD06-Mar-2025232 97

INFRA_OWNERSD06-Mar-202589 54

INTL_OWNERSD06-Mar-202573 54

LICENSED06-Mar-20253.1 KiB6352

LICENSE.fdlibmD06-Mar-2025250 75

LICENSE.strongtalkD06-Mar-20251.4 KiB3024

LICENSE.v8D06-Mar-20251.5 KiB2724

LOONG_OWNERSD06-Mar-202567 43

MIPS_OWNERSD06-Mar-202564 43

OWNERSD06-Mar-20251.1 KiB3126

PPC_OWNERSD06-Mar-2025103 65

PRESUBMIT.pyD06-Mar-202520.5 KiB545400

README.mdD06-Mar-2025964 4124

RISCV_OWNERSD06-Mar-202581 54

S390_OWNERSD06-Mar-2025103 65

WATCHLISTSD06-Mar-20254.9 KiB171166

WORKSPACED06-Mar-20252 KiB7458

codereview.settingsD06-Mar-2025242 87

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