Sin descripción

Victor Sigler abc4a027ea Merge pull request #446 from kbongort/FixLinuxTests hace 6 años
.circleci 6a56f98120 Update the project for Xcode 11.1 hace 6 años
Example 3880363ed5 fixed warnings and linux support hace 8 años
XCode 4d27d650be Import FoundationNetworking on Linux to fix tests. hace 6 años
.gitignore 6a56f98120 Update the project for Xcode 11.1 hace 6 años
.swiftlint.yml 8db2708fe7 Add the trailing whitespace rule in Swiftlint hace 7 años
CHANGELOG.md 52a4bc8e8b Update changelog. hace 6 años
Dangerfile c80a1c04fc Add PR number and fix some danger logic hace 6 años
Gemfile 2654c1e5cc Integrate Danger in CircleCI hace 7 años
Gemfile.lock 6a56f98120 Update the project for Xcode 11.1 hace 6 años
LICENSE c990b5c0e3 Initial commit hace 12 años
Package.swift e994a256af Fix a crash when several request for the same URL are launched together hace 7 años
README.md de11039319 Update the files for the release 1.4.7 hace 7 años
Swifter.podspec 8eea555a7c Use `swift_versions` DSL instead of `.swift-version` file. hace 7 años

README.md

Platform Swift Protocols CocoaPods Carthage Compatible

What is Swifter?

Tiny http server engine written in Swift programming language.

Branches

* stable - lands on CocoaPods and others. Supports the latest non-beta XCode and SPM. Stable.

* master - stable branch plus experimental web-framework layer.

* 2.0 - next version of Swifter (async IO). Experimental.

How to start?

let server = HttpServer()
server["/hello"] = { .ok(.htmlBody("You asked for \($0)"))  }
server.start()

How to load HTML by string?

let server = HttpServer()
server[path] = { request in
    return HttpResponse.ok(.text("<html string>"))
}
server.start()

How to share files?

let server = HttpServer()
server["/desktop/:path"] = shareFilesFromDirectory("/Users/me/Desktop")
server.start()

How to redirect?

let server = HttpServer()
server["/redirect"] = { request in
  return .movedPermanently("http://www.google.com")
}
server.start()

How to HTML ?

let server = HttpServer()
server["/my_html"] = scopes { 
  html {
    body {
      h1 { inner = "hello" }
    }
  }
}
server.start()

How to WebSockets ?

let server = HttpServer()
server["/websocket-echo"] = websocket(text: { session, text in
  session.writeText(text)
}, binary: { session, binary in
  session.writeBinary(binary)
})
server.start()

CocoaPods? Yes.

use_frameworks!

pod 'Swifter', '~> 1.4.7'

Carthage? Also yes.

github "httpswift/swifter" ~> 1.4.7

Swift Package Manager.

import PackageDescription

let package = Package(
    name: "MyServer",
    dependencies: [
        .package(url: "https://github.com/httpswift/swifter.git", .upToNextMajor(from: "1.4.7"))
    ]
)

Docker.

docker run -d -p 9080:9080 -v `pwd`:/Swifter -w /Swifter --name Swifter swift bash -c "swift run"