{"id":42970828,"url":"https://github.com/ararog/sofie","last_synced_at":"2026-01-31T00:51:56.818Z","repository":{"id":334097190,"uuid":"1138586878","full_name":"ararog/sofie","owner":"ararog","description":"🌟 The elegant full-stack web framework that makes Rust web development effortless","archived":false,"fork":false,"pushed_at":"2026-01-23T21:10:34.000Z","size":87,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-24T09:43:39.836Z","etag":null,"topics":["backend","framework","rest-api"],"latest_commit_sha":null,"homepage":"https://ararog.github.io/sofie/","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/ararog.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":"ararog"}},"created_at":"2026-01-20T21:34:49.000Z","updated_at":"2026-01-23T21:08:59.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ararog/sofie","commit_stats":null,"previous_names":["ararog/sophia","ararog/sofie"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ararog/sofie","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ararog%2Fsofie","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ararog%2Fsofie/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ararog%2Fsofie/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ararog%2Fsofie/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ararog","download_url":"https://codeload.github.com/ararog/sofie/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ararog%2Fsofie/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28925174,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T22:32:35.345Z","status":"ssl_error","status_checked_at":"2026-01-30T22:32:31.927Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["backend","framework","rest-api"],"created_at":"2026-01-31T00:51:53.785Z","updated_at":"2026-01-31T00:51:56.789Z","avatar_url":"https://github.com/ararog.png","language":"Rust","funding_links":["https://github.com/sponsors/ararog"],"categories":[],"sub_categories":[],"readme":"# Sofie\n\n🌟 **The elegant full-stack web framework that makes Rust web development effortless**\n\n**Sofie** is a comprehensive, production-ready web framework for Rust that combines simplicity with power. Built on top of VeTiS, it provides everything you need to build modern web applications - from REST APIs to full-featured web services - with a clean, intuitive API that makes development a joy.\n\n## ✨ Why Sofie?\n\n- **🎯 Developer Experience**: Ergonomic API design that feels natural and intuitive\n- **⚡ High Performance**: Powered by VeTiS for blazing-fast request handling\n- **🔧 Flexible Runtime**: Choose between Tokio or Smol async runtimes\n- **🛡️ Production Ready**: Built-in security, middleware, and monitoring capabilities\n- **📦 All-in-One**: Full-stack features from routing to authentication\n- **🚀 Modern Architecture**: Designed for today's web applications\n\n## 🛠️ Quick Start\n\nAdd Sofie to your `Cargo.toml`:\n\n```rust\nsofie = { version = \"0.1.0\", features = [\"vetis\"] }\n```\n\n## 💡 Usage Example\n\nHere's how simple it is to create a web application with Sofie:\n\n```rust\nuse sofie::App;\nuse http_body_util::{Full};\nuse bytes::Bytes;\nuse hyper::Response;\n\n#[tokio::main]\nasync fn main() -\u003e Result\u003c(), Box\u003cdyn std::error::Error\u003e\u003e {\n    std_logger::Config::logfmt().init();\n\n    let mut app = App::new();\n\n    app.serve(|_| async move {\n        Ok(Response::new(Full::new(Bytes::from(\"Hello World\"))))\n    }).await?;\n\n    Ok(())\n}\n\n```\n\n## 🎯 Perfect For\n\n- **🚀 REST APIs**: Build robust, scalable API services\n- **🌐 Web Applications**: Create full-featured web applications\n- **📱 Microservices**: Develop lightweight, focused services\n- **🔧 Backend Services**: Power modern frontend applications\n- **📊 Real-time Apps**: WebSocket and streaming applications\n- **🤖 AI Integration**: Build AI-powered web services\n\n## ⚙️ Supported Runtimes\n\n- [tokio](https://github.com/tokio-rs/tokio) - High-performance async runtime\n- [smol](https://github.com/smol-rs/smol) - Lightweight async runtime\n\n## 🔧 Crate Features\n\n- **tokio-rt** (default) - Tokio runtime support\n- **smol-rt** - Smol runtime support\n- **vetis** - VeTiS server integration\n\n## 📄 License\n\nMIT\n\n## 👤 Author\n\nRogerio Pereira Araujo \u003crogerio.araujo@gmail.com\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fararog%2Fsofie","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fararog%2Fsofie","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fararog%2Fsofie/lists"}