This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
rust-web/frontend/README.md
2024-06-11 19:00:36 -07:00

53 lines
833 B
Markdown

# Rust Axum Question and Answer Server - Frontend
## Contents
I'll do my best to keep these contents up-to-date as changes are made to the source code
* Setup
* Dependency overview
* Source overview
* Looking ahead
#### Build and Run
```
cd frontend
cargo build
trunk serve
```
Access the webserver shown in standard output
### Dependency overview
#### std
TODO
#### [Yew](https://crates.io/crates/yew)
TODO
#### [gloo](https://crates.io/crates/gloo)
TODO
#### [Serde/serde_json](https://crates.io/crates/serde)
A useful package for serializing and deserializing data.
#### [wasm_bindgen_futures](https://crates.io/crates/wasm_bindgen_futures)
TODO
### Source overview
#### [`src/main.rs`](/backend/src/main.rs)
TODO
### Looking ahead
TODO
#### Code cleanup
TODO
#### Higher priority
TODO
#### Lesser priority
TODO