Introduction

Welcome to the Z8 documentation. Z8 is a high-performance JavaScript runtime built on top of the V8 engine, designed for speed and simplicity.

Getting Started

To run your first script with Z8, simply pass your script file as an argument to the binary:

.\z8.exe app.js

REPL

Z8 features a built-in REPL (Read-Eval-Print Loop) for quick experimentation. Just run the executable without any arguments:

.\z8.exe

Project Philosophy

Z8 follows a "C++ First" philosophy, prioritizing direct, high-performance bindings over complex abstraction layers. Every part of Z8 is crafted to minimize overhead and maximize throughput.