A Rust-based library for handling accounting data.
There are two methods of building. The first is building natively, which allows
you to run tests locally. To build natively, run:
cargo build
To build the wasm module, you need to first install the necessary prerequisites: ```
rustup default nightly
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
npm install npm@latest -g ```
Once the prerequisites are installed, you can run:
wasm-pack build
If you compiled the native code, you can run the unit tests with the command:
cargo test
To test the wasm module, we have a very small test application in www
. You
will need to set it up locally on your machine. To do this, run:
```
cd pkg npm link
cd ../www npm install npm link cratchit ```
You should now be able to run:
npm start
within the www
subdirectory, which will spawn a webserver at localhost:8080
that you can navigate to within a web browser to test the wasm module.