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.
Johan Bergström
8c4f0df464
|
10 years ago | |
---|---|---|
.. | ||
benchmarks | 10 years ago | |
build | 10 years ago | |
include | 10 years ago | |
samples | 10 years ago | |
src | 10 years ago | |
test | 10 years ago | |
testing | 10 years ago | |
tools | 10 years ago | |
.clang-format | 11 years ago | |
.gitignore | 10 years ago | |
AUTHORS | 10 years ago | |
BUILD.gn | 10 years ago | |
ChangeLog | 10 years ago | |
DEPS | 10 years ago | |
LICENSE | 11 years ago | |
LICENSE.strongtalk | 14 years ago | |
LICENSE.v8 | 14 years ago | |
LICENSE.valgrind | 14 years ago | |
Makefile | 10 years ago | |
Makefile.android | 10 years ago | |
Makefile.nacl | 10 years ago | |
OWNERS | 10 years ago | |
PRESUBMIT.py | 10 years ago | |
README.md | 10 years ago | |
WATCHLISTS | 11 years ago | |
codereview.settings | 10 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://code.google.com/p/v8/
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/*