{"id":28163930,"url":"https://github.com/romanemreis/volga","last_synced_at":"2026-04-25T14:10:41.237Z","repository":{"id":257808563,"uuid":"866615813","full_name":"RomanEmreis/volga","owner":"RomanEmreis","description":"Composable Rust web framework built around explicit APIs and predictable performance.","archived":false,"fork":false,"pushed_at":"2026-04-25T10:05:29.000Z","size":1413,"stargazers_count":9,"open_issues_count":11,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-25T11:27:55.879Z","etag":null,"topics":["async-runtime","composable-architecture","developer-platform","explicit-api","high-performance","http-framework","low-overhead","microservices","rust","web-framework"],"latest_commit_sha":null,"homepage":"https://romanemreis.github.io/volga-docs/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RomanEmreis.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","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":"2024-10-02T15:17:50.000Z","updated_at":"2026-04-17T15:23:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"1b7126d3-469b-40c1-a94d-e1681bbc4015","html_url":"https://github.com/RomanEmreis/volga","commit_stats":null,"previous_names":["romanemreis/volga"],"tags_count":58,"template":false,"template_full_name":null,"purl":"pkg:github/RomanEmreis/volga","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomanEmreis%2Fvolga","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomanEmreis%2Fvolga/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomanEmreis%2Fvolga/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomanEmreis%2Fvolga/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RomanEmreis","download_url":"https://codeload.github.com/RomanEmreis/volga/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomanEmreis%2Fvolga/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32262801,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T09:15:33.318Z","status":"ssl_error","status_checked_at":"2026-04-25T09:15:31.997Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["async-runtime","composable-architecture","developer-platform","explicit-api","high-performance","http-framework","low-overhead","microservices","rust","web-framework"],"created_at":"2025-05-15T11:14:47.688Z","updated_at":"2026-04-25T14:10:41.232Z","avatar_url":"https://github.com/RomanEmreis.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Volga\nFast, simple, and high-performance web framework for Rust, built on top of\n[Tokio](https://tokio.rs/) and [hyper](https://hyper.rs/).\n\nVolga is designed to make building HTTP services straightforward and explicit,\nwhile keeping performance predictable and overhead minimal.\n\n[![latest](https://img.shields.io/badge/latest-0.9.1-blue)](https://crates.io/crates/volga)\n[![latest](https://img.shields.io/badge/rustc-1.90+-964B00)](https://releases.rs/docs/1.90.0/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-violet.svg)](https://github.com/RomanEmreis/volga/blob/main/LICENSE)\n[![Build](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml/badge.svg)](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml)\n[![Release](https://github.com/RomanEmreis/volga/actions/workflows/release.yml/badge.svg)](https://github.com/RomanEmreis/volga/actions/workflows/release.yml)\n\n\u003e 💡 **Status**: Volga is currently in preview.  \n\u003e The public API may change while core abstractions are being finalized.\n\n[Tutorial](https://romanemreis.github.io/volga-docs/) | [API Docs](https://docs.rs/volga/latest/volga/) | [Examples](https://github.com/RomanEmreis/volga/tree/main/examples) | [Roadmap](https://github.com/RomanEmreis/volga/milestone/1)\n\n## Why Volga?\n\nVolga focuses on clarity and control without sacrificing performance.\n\nIt avoids hidden behavior and framework-driven magic.\nMacros are used sparingly and primarily to reduce boilerplate. Handlers, middleware, and routing behave exactly as they look in code.\n\nVolga is a good fit if you:\n\n- Want simple and readable handler signatures\n- Care about predictable performance and low overhead\n- Need fine-grained control over the HTTP request/response lifecycle\n- Work with streaming, WebSockets, or long-lived connections\n- Prefer explicit APIs over code generation\n\n## Features\n- HTTP/1 and HTTP/2 support\n- Explicit and robust routing\n- Composable async middlewares\n- Dependency Injection without derive macros\n- Typed request extraction\n- WebSockets and WebSocket-over-HTTP/2\n- Streaming-friendly HTTP\n- Full **Tokio** compatibility\n- Runs on stable Rust **1.90+**\n\n## Getting Started\n### Dependencies\n```toml\n[dependencies]\nvolga = \"0.9.1\"\ntokio = { version = \"1\", features = [\"full\"] }\n```\n### Simple request handler\n```rust\nuse volga::{App, ok};\n\n#[tokio::main]\nasync fn main() -\u003e std::io::Result\u003c()\u003e {\n    let mut app = App::new();\n    \n    app.map_get(\"/hello/{name}\", async |name: String| {\n        ok!(\"Hello {name}!\")\n    });\n    \n    app.run().await\n}\n```\nThis example demonstrates:\n\n* typed path parameter extraction\n* async request handlers\n* minimal setup with zero boilerplate\n\nMore advanced examples (middleware, DI, auth, rate limiting) can be found in the\n[documentation](https://romanemreis.github.io/volga-docs/) and [here](https://github.com/RomanEmreis/volga/tree/main/examples).\n\n## Performance\nTested on a single instance with 4 threads and 500 concurrent connections:\n\n```\nOS: Arch Linux\nCPU: Intel i7-8665U (8) @ 4.800GHz\nRAM: 31686MiB\n```\n### Results\n```\nRunning 10s test @ http://0.0.0.0:7878/plaintext\n  4 threads and 500 connections\n  Thread Stats   Avg      Stdev     Max   +/- Stdev\n    Latency     1.30ms    1.06ms  16.75ms   84.52%\n    Req/Sec    97.79k    18.43k  133.87k    61.50%\n  3902819 requests in 10.07s, 483.86MB read\nRequests/sec: 387433.91\nTransfer/sec:     48.03MB\n```\n\n\u003e ⚠️ Benchmark results are provided for reference only.\n\u003e Actual performance depends on workload, middleware, and handler logic.\n\n## License\nVolga is licensed under the MIT License. Contributions welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromanemreis%2Fvolga","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fromanemreis%2Fvolga","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromanemreis%2Fvolga/lists"}