Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mitghi/jetroweb
Jetro WASM frontend
https://github.com/mitghi/jetroweb
jmespath json-query json-query-language json-transformation rust serde serde-json
Last synced: about 2 months ago
JSON representation
Jetro WASM frontend
- Host: GitHub
- URL: https://github.com/mitghi/jetroweb
- Owner: mitghi
- License: mit
- Created: 2023-02-26T14:18:51.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-27T20:10:22.000Z (9 months ago)
- Last Synced: 2024-03-27T21:26:31.565Z (9 months ago)
- Topics: jmespath, json-query, json-query-language, json-transformation, rust, serde, serde-json
- Language: Rust
- Homepage:
- Size: 66.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# jetroweb
Webassembly frontend for [Jetro](https://github.com/mitghi/jetro).
### Installation
If you don't already have it installed, it's time to install Rust: .
The rest of this guide assumes a typical Rust installation which contains both `rustup` and Cargo.To compile Rust to WASM, we need to have the `wasm32-unknown-unknown` target installed.
If you don't already have it, install it with the following command:```bash
rustup target add wasm32-unknown-unknown
```Now that we have our basics covered, it's time to install the star of the show: [Trunk].
Simply run the following command to install it:```bash
cargo install trunk wasm-bindgen-cli
```That's it, we're done!
### Running
```bash
trunk serve
```