swift-http alternatives and similar libraries
Based on the "Server" category.
Alternatively, view swift-http 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.
CodeRabbit: AI Code Reviews for Developers

* 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 swift-http or a related project?
README
Swift HTTP Server
Simple HTTP implementation for Swift using POSIX socket API. Running on Mac OS X and Linux.
For Mac users: You can install new Swift compiler following this instruction then you will be able to build the code directly on your Xcode.
Compile
Run the following command to compile the source:
swift build
Run
After successfully compile, run the server with:
.build/debug/example
Now, go to http://localhost:8080 to test, the response should be: Hello World
Setting up Docker container from Dockerfile
Go to docker
folder and run build.sh
to build swiftbox
image
cd docker
./build.sh
Run new container from swiftbox
image, mount your working directory and expose the port:
docker run -it -p 8080:8080 -v /path/to/your/host/working/folder:/src swiftbox
Now you can go to /src
folder, which linked to your /path/to/your/host/working/folder
to start using:
cd /src
swift build
Setting up Docker container for Swift yourself
Create new ubuntu
container, don't forget to expose port 8080
or whatever you want, to test the HTTP server
docker run -it -p 8080:8080 -v /path/to/your/host/working/folder:/src ubuntu
When you're in the new created ubuntu
container, install some dependencies with apt-get
:
apt-get update && apt-get install wget build-essential clang rsync libpython-all-dev libedit-dev libicu52 libxml2-dev
Now, download the latest Swift release for Linux:
wget https://swift.org/builds/ubuntu1404/swift-2.2-SNAPSHOT-2015-12-10-a/swift-2.2-SNAPSHOT-2015-12-10-a-ubuntu14.04.tar.gz
Extract the downloaded zip
:
tar xzf swift-2.2-SNAPSHOT-2015-12-10-a-ubuntu14.04.tar.gz
Use rsync
to move all the packages to your /usr
folder:
rsync -a -v swift-2.2-SNAPSHOT-2015-12-10-a-ubuntu14.04/usr/ /usr
You can delete the downloaded files (optional):
rm -rf swift-2.2-SNAPSHOT-2015-12-10-a-ubuntu14.04*
Now, you have Swift installed, test it with the following command:
swift --version
License
The source code is published under MIT license. Please see [LICENSE.md
](LICENSE.md) for more detail.
*Note that all licence references and agreements mentioned in the swift-http README section above
are relevant to that project's source code only.