Skip to content

Latest commit

 

History

History
8 lines (4 loc) · 542 Bytes

File metadata and controls

8 lines (4 loc) · 542 Bytes

v8-java

A java representation of V8 javascript engine. It is used for debugging or learning purposes, you can used it to find out how V8 javascript engine works.

All classes of each namespace is converted to a single class file and every namespace is converted to a package, for example the namespace v8 is converted to a java standard package org.jsengine.v8.

The main class of this project is the HelloWorld.java from the src/org/jsengine/v8/samples converted to java code from the sample codes of V8 named hello-world.cc.