Popularity
3.8
Stable
Activity
0.0
Stable
262
12
5
Code Quality Rank:
L5
Programming language: Swift
License: MIT License
Tags:
Server
Latest version: v0.1.1
swiftra alternatives and similar libraries
Based on the "Server" category.
Alternatively, view swiftra 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…) -
GCDWebServer
DISCONTINUED. The #1 HTTP server for iOS, macOS & tvOS (also includes web based uploader & WebDAV server) -
Zewo
Lightweight library for web server applications in Swift on macOS and Linux powered by coroutines. -
smoke-framework
A light-weight server-side service framework written in the Swift programming language.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.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 swiftra or a related project?
Popular Comparisons
README
Swiftra
Swiftra is a library that provides DSLs like Sinatra.
System Requirements
DEVELOPMENT-SNAPSHOT-2016-02-08-a
Example
See swiftra-example.
import swiftra
get("/hello") { req in
return "Hello, world!"
}
post("/form") { req in
return "Hello: \(req.bodyString)"
}
get("/404") { req in
return Response(.NotFound)
}
serve(8080)