A tiny HTTP server engine written in swift.
- SSL/TLS support
- Error handling
- Global middlewares
- Route middlewares
- Route grouping
- File serving
- Directory browsing
- Request parameters
- Works in Linux, iOS, macOS and tvOS
import HttpSwift
// ...
let server = Server()
server.get("/hello/{id}") { request in
print(request.queryParams["state"])
return .ok(request.routeParams["id"]!)
}
try server.run() //go to http://localhost:8080/hello/1?state=active in the browser
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
To integrate Http.swift into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
target '<Your Target Name>' do
pod 'Http.swift', '~> 2.2.0'
end
Then, run the following command:
$ pod install
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate Http.swift into your Xcode project using Carthage, specify it in your Cartfile
:
github "BiAtoms/Http.swift" ~> 2.2.0
Run carthage update
to build the framework and drag the built HttpSwift.framework
into your Xcode project.
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift
compiler. It is in early development, but Http.swift does support its use on supported platforms.
Once you have your Swift package set up, adding Http.swift as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.package(url: "https://github.com/BiAtoms/Http.swift.git", from: "2.2.0")
]
- Orkhan Alikhanov - Initial work - OrkhanAlikhanov
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details