Popularity
0.8
Growing
Activity
0.0
Stable
27
2
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…) -
swifter
Tiny http server engine written in Swift programming language. -
Swifton
A Ruby on Rails inspired Web Framework for Swift that runs on Linux and OS X -
Zewo
Lightweight library for web server applications in Swift on macOS and Linux powered by coroutines. -
Taylor
A lightweight library for writing HTTP web servers with Swift -
Blackfish
A minimal, fast and unopinionated web framework for Swift -
Express
Swift Express is a simple, yet unopinionated web application server written in Swift -
Embassy
Super lightweight async HTTP server library in pure Swift runs in iOS / MacOS / Linux -
XcodeServerSDK
Access Xcode Server API with native Swift objects. -
Restofire
Restofire is a protocol oriented networking client for Alamofire -
Edge
A Swift Multiplatform Single-threaded Non-blocking Web and Networking Framework -
NetworkObjects
Swift backend / server framework (Pure Swift, Supports Linux) -
RxNetworks
🧚 Responsive plugin network architecture for RxSwift + Moya + HandyJSON + Plugins. -
Ambassador
Super lightweight web framework in Swift based on SWSGI -
SwiftyHTTP
A simple GCD based HTTP client and server, written in 'pure' Swift -
Dynamo
High Performance (nearly)100% Swift Web server supporting dynamic content. -
Swift-Server
A very basic proof-of-concept Swift HTTP server that does not require Foundation -
Corvus
Corvus has been archived in favor of https://github.com/Apodini/Apodini .
Appwrite - The Open Source Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.io
* 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