chromium_v8:基于 OpenHarmony 生态的 JavaScript 引擎项目

V8 JavaScript库

分支92Tags1
文件最后提交记录最后更新时间
5 年前
7 个月前
1 年前
6 年前
1 年前
27 天前
4 天前
7 个月前
8 个月前
5 天前
5 天前
4 年前
8 个月前
27 天前
1 年前
8 个月前
1 年前
1 年前
4 年前
1 年前
7 年前
8 个月前
3 个月前
3 年前
3 年前
1 年前
10 个月前
7 个月前
7 个月前
18 天前
10 年前
10 个月前
7 个月前
1 年前
1 年前
8 个月前
2 年前
6 年前
1 年前
9 年前
15 年前
15 年前
4 年前
4 年前
9 个月前
1 年前
1 年前
9 个月前
7 年前
9 个月前
1 年前
7 个月前
8 年前
1 年前

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://v8.dev/docs

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 at v8.dev/docs/contribute.