Skip to content

nicoburns/blessed-rs

Folders and files

NameName
Last commit message
Last commit date
Feb 25, 2025
Feb 25, 2025
Mar 13, 2025
Mar 14, 2025
Mar 14, 2025
Nov 10, 2022
Mar 6, 2025
Mar 5, 2025
Mar 5, 2025
Mar 5, 2025
Jan 1, 2025
Jan 1, 2025
Dec 28, 2022

Repository files navigation

A community guide to the Rust ecosystem

Testing locally

  • Run cargo run then open http://localhost:3333 in your browser
  • The port can be overriden using the PORT environment variable
  • If you want to automatically recompile and re-run on save you can install cargo-watch (cargo install cargo-watch) then and use cargo watch -x run instead of cargo run.