Load testing bot for Nox relay servers, written in Rust.
- GitHub: https://github.com/AtelierVR/bot
- Main branch:
main(stable releases) - Development branch:
development(active development)
- High-performance QUIC-based relay client
- Multiple movement patterns (circular, random teleport, square)
- Configurable bot count and behavior
- Graceful shutdown handling
# Development build
cargo build
# Release build (optimized)
cargo build --release# Using cargo
cargo run --release --bin noxbot -- --count 10 --movement circular
# Using npm scripts
npm run build
./target/release/noxbot --count 10 --movement circularrelay/- QUIC relay client librarytest/- Load testing application (noxbot binary)api/- API client
Create a config file or use environment variables:
RELAY_ADDRESS=127.0.0.1:30000
BOT_COUNT=10
MOVEMENT_TYPE=circularAGPLv3 - See LICENSE file for details.