tuna-web

Crates.iotuna-web
lib.rstuna-web
version0.0.2
sourcesrc
created_at2021-05-16 20:58:57.489401
updated_at2021-05-17 16:22:36.597019
descriptionWeb GUI for tuna
homepagehttps://github.com/tgolsson/tuna
repositoryhttps://github.com/tgolsson/tuna
max_upload_size
id398342
size127,410
Tom Solberg (tgolsson)

documentation

README

tuna-web

Web frontend for the Tuna CVAR tool to allow browser access to variables.

Example image of the tuna-web UI

fn main() {
    let mut server = tuna_web::TunaServer::new(4450).unwrap();

    /* Set up variables etc */

    loop {
        server.loop_once(); // will handle all pollable connections - individual clients will run on threads

        /* Other logic */
    }
}

Note that tuna-web is a work in progress! I'm working on it due to a need, but I want to dogfood it while I build it - not build a whole thing on its own.

Alternatives:

  • const-tweaker - similar in workflow to tuna + tuna-web, unfortunately suffers from soundness issues.
Commit count: 27

cargo fmt