Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devversion/v8
V8 JavaScript Engine
https://github.com/devversion/v8
Last synced: 22 days ago
JSON representation
V8 JavaScript Engine
- Host: GitHub
- URL: https://github.com/devversion/v8
- Owner: devversion
- License: other
- Created: 2015-09-07T19:16:22.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-07T19:36:14.000Z (over 9 years ago)
- Last Synced: 2024-11-11T06:12:29.319Z (about 2 months ago)
- Language: C++
- Homepage:
- Size: 89.8 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: LICENSE
Awesome Lists containing this project
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://code.google.com/p/v8/
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/*