/rustexp

A Rust regular expression editor and tester that runs entirely within the browser! Modified to use the fancy-regex library.

Primary LanguageRustGNU Affero General Public License v3.0AGPL-3.0

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