rustexp icon indicating copy to clipboard operation
rustexp copied to clipboard

A Rust regular expression editor and tester that runs entirely within the browser!

Rustexp

A Rust regular expression editor and tester. It compiles to web assembly and is served from from GitHub pages (from the docs directory). There's no server-side component at all!

# Setup
cargo install -f cargo-web

# Run dev server
cargo web start --auto-reload

# Run tests
cargo test
cargo web test --nodejs

# Build binary
cargo web build

# Deploy
make deploy
git add .
git commit -m 'Deploy'
git push