{"id":28463894,"url":"https://github.com/koompi/armandra","last_synced_at":"2026-07-14T00:31:30.720Z","repository":{"id":292980616,"uuid":"982556010","full_name":"koompi/armandra","owner":"koompi","description":"powerful cross-platform distributed stress testing tool designed for testing websites and collecting errors","archived":false,"fork":false,"pushed_at":"2025-12-24T10:42:22.000Z","size":637,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-26T01:13:35.906Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/koompi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-13T04:21:18.000Z","updated_at":"2025-12-24T10:42:24.000Z","dependencies_parsed_at":"2025-05-13T05:35:32.407Z","dependency_job_id":null,"html_url":"https://github.com/koompi/armandra","commit_stats":null,"previous_names":["koompi/armanda","koompi/armandra"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/koompi/armandra","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koompi%2Farmandra","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koompi%2Farmandra/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koompi%2Farmandra/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koompi%2Farmandra/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/koompi","download_url":"https://codeload.github.com/koompi/armandra/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koompi%2Farmandra/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35441637,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-13T02:00:06.543Z","response_time":119,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-07T05:08:23.884Z","updated_at":"2026-07-14T00:31:30.705Z","avatar_url":"https://github.com/koompi.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Armandra\n\nArmandra is a powerful cross-platform distributed stress testing tool designed for testing websites and collecting errors. Built with Tauri, React, and Rust, it provides a robust solution for load testing web applications across multiple machines.\n\n![Armandra Logo](./src-tauri/icons/armandra/icon_128x128.png)\n\n## Features\n\n- **Cross-Platform**: Runs on Windows, macOS, and Linux\n- **Distributed Testing**: Coordinate multiple clients for increased load testing capacity\n- **Real-time Metrics**: Monitor performance metrics during tests\n- **Comprehensive Results**: Detailed reports with response times, error rates, and status codes\n- **Customizable Tests**: Configure request parameters, headers, and concurrency\n- **Collaborative Testing**: Join testing rooms with multiple team members\n\n## Architecture\n\nArmandra consists of three main components:\n\n1. **Desktop Client**: A Tauri application with React frontend and Rust backend\n2. **Coordination Server**: WebSocket server for synchronizing test execution across clients\n3. **Testing Engine**: Rust-based HTTP client for efficient request handling\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 18+\n- Rust 1.70+\n- pnpm (recommended) or npm\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/koompi/armandra.git\n   cd armandra\n   ```\n\n2. Install dependencies:\n\n   ```bash\n   pnpm install\n   ```\n\n3. Start the coordination server:\n\n   ```bash\n   cd server\n   node index.js\n   ```\n\n4. Run the desktop application:\n   ```bash\n   pnpm tauri dev\n   ```\n\n### Building for Production\n\nTo build the application for your current platform:\n\n```bash\npnpm tauri build\n```\n\n## Usage\n\n### Connecting to the Server\n\n1. Start the application\n2. Enter the WebSocket server URL (default: `ws://localhost:3001`)\n3. Click \"Connect\"\n\n### Creating or Joining a Room\n\n1. After connecting, you can either:\n   - Create a new testing room\n   - Join an existing room by entering a Room ID\n\n### Configuring a Test\n\nAs a room host, you can configure the test parameters:\n\n- Target URL\n- HTTP Method (GET, POST, PUT, etc.)\n- Request Headers\n- Request Body (for POST/PUT)\n- Number of requests per client\n- Concurrency level\n- Request timeout\n\n### Running Tests\n\n1. The host starts the test\n2. All clients in the room execute the test simultaneously\n3. Results are collected and aggregated in real-time\n4. View detailed metrics and charts after test completion\n\n## Development\n\n### Project Structure\n\n```\narmandra/\n├── src/                  # React frontend\n│   ├── components/       # UI components\n│   ├── store/            # State management\n│   └── App.tsx           # Main application\n├── src-tauri/            # Rust backend\n│   ├── src/              # Rust source code\n│   │   ├── main.rs       # Entry point\n│   │   ├── lib.rs        # Library code\n│   │   ├── stress_test.rs # Testing engine\n│   │   └── websocket.rs  # WebSocket client\n│   ├── Cargo.toml        # Rust dependencies\n│   └── tauri.conf.json   # Tauri configuration\n└── server/               # Coordination server\n    └── index.js          # WebSocket server\n```\n\n### Technology Stack\n\n- **Frontend**: React, TypeScript, Tailwind CSS, Recharts\n- **Backend**: Rust, Tauri, Tokio, Reqwest\n- **Server**: Node.js, WebSocket (ws)\n- **State Management**: Zustand\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Acknowledgments\n\n- [Tauri](https://tauri.app/) for the cross-platform framework\n- [React](https://reactjs.org/) for the frontend library\n- [Rust](https://www.rust-lang.org/) for the powerful backend language\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoompi%2Farmandra","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoompi%2Farmandra","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoompi%2Farmandra/lists"}