Frontend web application intended to provide an interface to the APIs provided by my questions API rust server. This application is a fork of the course knock-knock-yew frontend, primarily authored by Bart Massey
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.
Go to file
2024-06-06 10:29:25 -07:00
.cargo first working version 2024-05-29 12:38:58 -07:00
src added joke finder 2024-06-03 00:55:55 -07:00
.gitignore add readme, gitignore 2024-06-06 10:29:25 -07:00
Cargo.lock add readme, gitignore 2024-06-06 10:29:25 -07:00
Cargo.toml add readme, gitignore 2024-06-06 10:29:25 -07:00
index.css added css 2024-05-29 15:35:55 -07:00
index.html add readme, gitignore 2024-06-06 10:29:25 -07:00
README.md add readme, gitignore 2024-06-06 10:29:25 -07:00

Questions - A yew frontend WASM application

This is a frontend web application intended to provide an interface to the APIs provided by my questions API rust server. This application is a fork of the course knock-knock-yew frontend, primarily authored by Bart Massey

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

Setup

First, the questions API rust server should be running on a known address and port

rustup update
rustup target add wasm32-unknown-unknown
cargo install trunk --locked
cargo build

Run

trunk serve

Dependency overview

std

Yew

Source overview

src/main.rs

Looking ahead