A Rust/wasm implementation of living-room/parser-js.
In order to work on the core of this parser, you should be able to use stable rust, however when building out the JS/WASM, portions of the library, you also need:
After iterating/testing the rust lib and making sure it functions correctly...
# You will only need to do this ONCE!
cargo install -f cargo-web
cd js
# will delete the already existing files
make clean
# runs `cargo web build` and copies over the `.js` and `.wasm`
# from the target/... directory
make
# will run node tests
make test