SwiftX v1.0 Stable Release
SwiftXFramework
A high-performance, developer-first web engine for Swift.
Built for speed, safety, and a minimal footprint.
Latency
< 1msRequests
1.2M/sPlatform
Mac/Win/LinuxComplexity
Zero-DepWorker 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)