foundation_toolings 0.0.1

Development tooling server: reverse proxy, file watcher, hot reload — built on valtron and native APIs, zero async runtime deps
1
2
3
4
5
6
7
8
9
10
pub mod handlers;
pub mod tunnel_proxy;

pub use handlers::*;
pub use tunnel_proxy::*;

// -- Reloader.js embedded asset

/// The SSE reloader JavaScript, embedded at compile time.
pub static RELOADER_JS: &[u8] = include_bytes!("reloader.js");