Popularity
0.8
Declining
Activity
0.0
Stable
27
1
3
Code Quality Rank:
L5
Programming language: Swift
License: MIT License
Latest version: v0.4.0
http4swift alternatives and similar libraries
Based on the "Webserver" category.
Alternatively, view http4swift alternatives based on common mentions on social networks and blogs.
-
Perfect
Server-side Swift. The Perfect core toolset and framework for Swift Developers. (For mobile back-end development, website and API development, and more…) -
Zewo
Lightweight library for web server applications in Swift on macOS and Linux powered by coroutines.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of http4swift or a related project?
README
http4swift
http4swift is a tiny HTTP server library for Nest-compatible applications.
This project is unstable, and the API might be changed at anytime before we reach a stable version.
Usage
import http4swift
import Nest
let app: Application = { (request) -> ResponseType in
// ...
}
guard let server = HTTPServer(port: 8080) else {
fatalError()
}
server.serve(app)
Versions
- v0.3.x
- Nest 0.3 compatibility
- v0.2.x
- Nest 0.2 compatibility
- v0.1.x
- First release