v0.1.0
Giron is an ECMAScript parser written in Rust which outputs Rust strucs or JSON in the ESTree specification format.
The giron-wasm
provides the compiled .wasm binary and javascript interface for using the giron parser on the web.
Note: giron is a work in progress.
This repository is looking for contributors. There's still a lot of work to be done, but some of the priorities right now are:
sh
git clone https://github.com/BlueBlazin/giron.git
cd giron
cargo build
To parse a javascript file using the built binary, run giron using cargo with a single argument providing the path of the file.
By default the result is output to stdout. To redirect it to a file:
sh
cargo run myscript.js > myscript.json