SwiftX v1.0 Stable Release

SwiftXFramework

A high-performance, developer-first web engine for Swift. Built for speed, safety, and a minimal footprint.

Latency
< 1ms
Requests
1.2M/s
Platform
Mac/Win/Linux
Complexity
Zero-Dep

Worker Managed

SwiftXCore custom scheduler for ultra-low latency.

O(k) Routing

High-speed Radix tree for complex path matching.

Native Async

Seamless bridge with standard Swift concurrency.

Plugin Driven

Modular engine built for massive extensibility.

Metrics Ready

Real-time monitoring and production logging.

Universal SDK

Glibc and WinSDK support for cross-platform apps.

Entry Point
1import SwiftX
2
3let app = SwiftX()
4
5app.get("/greet/:name") { req, _ in
6 return .json(["message": "Welcome!"])
7}
8app.start(port: 5100)