A Swift Web Framework and HTTP Server
Kitura is a web framework and web server that is created for web services written in Swift.
- URL routing (GET, POST, PUT, DELETE)
- URL parameters
- Static file serving
- FastCGI Support
- JSON parsing
- Pluggable middleware
This branch of Kitura requires the DEVELOPMENT-SNAPSHOT-2016-06-20-a
version of Swift 3 trunk (master). You can download this version at swift.org. Kitura is unlikely to compile with any other version of Swift.
- Install Homebrew (if you don't already have it installed):
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Install the necessary dependencies:
$ brew install curl
-
Download and install Xcode 8 beta 3.
-
Download and install the supported Swift compiler.
During installation if you are using the package installer make sure to select "all users" for the installation path in order for the correct toolchain version to be available for use with the terminal.
After installation, make sure you update your PATH environment variable as described in the installation instructions (e.g. export PATH=/Library/Developer/Toolchains/swift-latest.xctoolchain/usr/bin:$PATH
)
- Select the Xcode beta as your active developer directory.
$ sudo xcode-select -s /Applications/Xcode-beta.app/Contents/Developer/
Now you are ready to develop your first Kitura app. Check Kitura Sample or see Getting Started.
Kitura is tested on Ubuntu 14.04 LTS and Ubuntu 15.10.
- Install the following system linux libraries:
$ sudo apt-get install autoconf libtool libkqueue-dev libkqueue0 libcurl4-openssl-dev libbsd-dev libblocksruntime-dev
- Install the supported Swift compiler for Linux.
Follow the instructions provided on that page. After installing it (i.e. uncompressing the tar file), make sure you update your PATH environment variable so that it includes the extracted tools: export PATH=/<path to uncompress tar contents>/usr/bin:$PATH
. To update the PATH env variable, you can update your .bashrc file.
- Clone, build and install the libdispatch library.
The complete instructions for building and installing this library are here, though, all you need to do is just this
$ git clone --recursive -b experimental/foundation https://github.com/apple/swift-corelibs-libdispatch.git && cd swift-corelibs-libdispatch && sh ./autogen.sh && ./configure --with-swift-toolchain=<path-to-swift>/usr --prefix=<path-to-swift>/usr && make && make install
Now you are ready to develop your first Kitura app. Check Kitura Sample or see Getting Started.
-
Install Docker on your development system.
-
Pull down the kitura-ubuntu image from Docker Hub:
$ docker pull ibmcom/kitura-ubuntu:latest
- Create a Docker container using the
kitura-ubuntu
image you just downloaded and forward port 8090 on host to the container:
$ docker run -i -p 8090:8090 -t ibmcom/kitura-ubuntu:latest /bin/bash
- From within the Docker container, execute the
clone_build_kitura.sh
script to build the Kitura-Starter-Bluemix sample project:
# /root/clone_build_kitura.sh
The last two output lines from executing the clone_build_kitura.sh
script should be similar to:
Linking .build/debug/Kitura-Starter-Bluemix
>> Build for Kitura-Starter-Bluemix completed (see above for results).
- You can now run the Kitura-Starter-Bluemix executable inside the Docker container:
# /root/start_kitura_sample.sh
You should see an output message that contains the string Listening on port 8090
.
-
Install VirtualBox.
-
Install Vagrant.
-
From the root of the Kitura folder containing the
vagrantfile
, create and configure a guest machine:
$ vagrant up
- SSH into the Vagrant machine:
$ vagrant ssh
- As needed for development, edit the
vagrantfile
to setup Synced Folders to share files between your host and guest machine.
Now you are ready to develop your first Kitura app. Check Kitura Sample or see Getting Started.
Let's develop your first Kitura web application!
- First, create a new project directory.
$ mkdir myFirstProject
- Next, create a new Swift project using the Swift Package Manager.
$ cd myFirstProject
$ swift package init
Now your directory structure under myFirstProject should look like this:
myFirstProject ├── Package.swift ├── Sources │ └── main.swift └── Tests └── empty
Note: For more information on the Swift Package Manager, go here.
- In
Package.swift
, add Kitura as a dependency for your project.
import PackageDescription
let package = Package(
name: "myFirstProject",
dependencies: [
.Package(url: "https://github.com/IBM-Swift/Kitura.git", majorVersion: 0, minor: 22)
])
- In
Sources/main.swift
, import the Kitura module.
import Kitura
- Add a router and a path:
let router = Router()
router.get("/") {
request, response, next in
response.send("Hello, World!")
next()
}
- Add an HTTP server and start the Kitura framework.
Kitura.addHTTPServer(onPort: 8090, with: router)
Kitura.run()
- Your
Sources/main.swift
file should now look like this.
import Kitura
let router = Router()
router.get("/") {
request, response, next in
response.send("Hello, World!")
next()
}
Kitura.addHTTPServer(onPort: 8090, with: router)
Kitura.run()
-
Optionally, add logging.
In the code example above, no messages from Kitura will logged. You may want to add a logger to help diagnose problems that occur.
Add a HeliumLogger dependency to
Package.swift
.import PackageDescription let package = Package( name: "myFirstProject", dependencies: [ .Package(url: "https://github.com/IBM-Swift/Kitura.git", majorVersion: 0, minor: 22), .Package(url: "https://github.com/IBM-Swift/HeliumLogger", majorVersion: 0, minor: 12), ])
Enable HeliumLogger in
Sources/main.swift
.import HeliumLogger HeliumLogger.use()
Here is the finished
Sources/main.swift
file.import Kitura import HeliumLogger HeliumLogger.use() let router = Router() router.get("/") { request, response, next in response.send("Hello, World!") next() } Kitura.addHTTPServer(onPort: 8090, with: router) Kitura.run()
-
Compile your application:
- macOS:
$ swift build
- Linux:
$ swift build -Xcc -fblocks
Or copy our Makefile and build scripts to your project directory and run make build
. You may want to customize this Makefile and use it for building, testing and running your application. For example, you can clean your build directory, refetch all the dependencies, build, test and run your application by running make clean refetch test run
.
- Now run your new web application:
$ .build/debug/myFirstProject
- Open your browser at http://localhost:8090
All improvements to Kitura are very welcome! Here's how to get started with developing Kitura itself.
- Clone this repository.
$ git clone https://github.com/IBM-Swift/Kitura
- Build and run tests.
$ make test
-
Homebrew by default installs libraries to
/usr/local
, if yours is different, change the path to find the curl library, inKitura-Build/build/Makefile
:SWIFTC_FLAGS = -Xswiftc -I/usr/local/include LINKER_FLAGS = -Xlinker -L/usr/local/lib
You can find more info on contributing to Kitura in our contributing guidelines.
Kitura is licensed under the Apache License, Version 2.0.