Popularity
3.9
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
The #1 HTTP server for iOS, macOS & tvOS (also includes web based uploader & WebDAV server) -
CocoaHTTPServer
A small, lightweight, embeddable HTTP server for Mac OS X or iOS applications -
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. -
smoke-framework
A light-weight server-side service framework written in the Swift programming language. -
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 -
Edge
A Swift Multiplatform Single-threaded Non-blocking Web and Networking Framework -
Dynamo
High Performance (nearly)100% Swift Web server supporting dynamic content.
Appwrite - The open-source backend cloud platform
The open-source backend cloud platform for developing Web, Mobile, and Flutter applications. You can set up your backend faster with real-time APIs for authentication, databases, file 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 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)