# sofie
**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.
## Installation
```toml
[dependencies]
sofie = { version = "0.0.9", features = ["http1", "tokio-rt"] }
```
## quickstart
```rust
use sofie::App;
use http_body_util::{Full};
use bytes::Bytes;
use hyper::Response;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
std_logger::Config::logfmt().init();
let mut app = App::new();
app.serve(|_| async move {
Ok(Response::new(Full::new(Bytes::from("Hello World"))))
}).await?;
Ok(())
}
```
## πΊοΈ Roadmap
Sofie is continuously evolving! Here's what we're working on:
### Security & Authentication
- **π Authentication** - Multiple auth methods (JWT, OAuth, Session)
- **π‘οΈ Authorization** - Role-based access control
- **π CSRF Protection** - Cross-site request forgery prevention
### Middleware & Features
- **π Middleware System** - Composable request/response processing
- **β‘ Rate Limiting** - Protect against abuse and DoS attacks
- **π Sessions** - User session management
- **π CORS** - Cross-origin resource sharing support
### Real-time & Monitoring
- **π WebSocket** - Real-time bidirectional communication
- **π Metrics** - Application performance monitoring
- **π Logging** - Structured logging integration
- **π Tracing** - Distributed tracing support
### AI & Future
- **π€ AI Agents** - Built-in AI service integration
- **π Advanced Features** - Cutting-edge web technologies
## Blog Posts
- Coming soon