mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Franziska Hinkelmann
60d46b4e70
|
9 years ago | |
---|---|---|
.. | ||
base/trace_event/common | 9 years ago | |
benchmarks | 10 years ago | |
build | 9 years ago | |
docs | 9 years ago | |
include | 9 years ago | |
infra | 9 years ago | |
samples | 9 years ago | |
src | 9 years ago | |
test | 9 years ago | |
testing | 9 years ago | |
tools | 9 years ago | |
.clang-format | 9 years ago | |
.gitignore | 9 years ago | |
.ycm_extra_conf.py | 9 years ago | |
AUTHORS | 9 years ago | |
BUILD.gn | 9 years ago | |
CODE_OF_CONDUCT.md | 9 years ago | |
ChangeLog | 9 years ago | |
DEPS | 9 years ago | |
LICENSE | 9 years ago | |
LICENSE.strongtalk | 14 years ago | |
LICENSE.v8 | 14 years ago | |
LICENSE.valgrind | 14 years ago | |
Makefile | 9 years ago | |
Makefile.android | 9 years ago | |
Makefile.nacl | 10 years ago | |
OWNERS | 9 years ago | |
PRESUBMIT.py | 9 years ago | |
README.md | 9 years ago | |
WATCHLISTS | 9 years ago | |
codereview.settings | 9 years ago | |
snapshot_toolchain.gni | 9 years ago |
README.md
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://github.com/v8/v8/wiki
Getting the Code
Checkout 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, run
git pull origin
gclient sync
For 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 on the V8 wiki.