Swiftpack.co - mohaila/RestKitura as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by mohaila.
mohaila/RestKitura step2
A REST App using Kitura
⭐️ 0
🕓 4 years ago
.package(url: "https://github.com/mohaila/RestKitura.git", from: "step2")

RestKitura

A Simple REST server using Swift 5.0.1 on Ubuntu 18.04.

Step 1: Steps to get started with Kitura:

  1. Install swift 5.0.1 for ubuntu 18.04 and all required prerequisites. For more information, visit www.kitura.io.
  2. Generate an executable project using the commands:
//bash
mkdir RestKitura
cd RestKitura
swift package init --type executable
  1. Add Kitura and HeliumLogger dependencies for the application in Package.swift
  2. Add Quick and Nimble dependencies for testing
  3. Write a simple Hello World server to test all id working
  4. Write a vanilla test to test the framework tests are working
  5. Add VanillaTests module to Package.swift
  6. Test that Quick and Nimble are working
//bash
swift test

The output:

[3/3] Linking ./.build/x86_64-unknown-linux/debug/RestKituraPackageTests.xctest
Test Suite 'All tests' started at 2019-06-13 11:19:09.478
Test Suite 'debug.xctest' started at 2019-06-13 11:19:09.501
Test Suite 'QuickSpec' started at 2019-06-13 11:19:09.501
Test Case 'QuickSpec.Vanilla tests, Test that Quick and Nimble are setup, True is always true' started at 2019-06-13 11:19:09.501
Test Case 'QuickSpec.Vanilla tests, Test that Quick and Nimble are setup, True is always true' passed (0.001 seconds)
Test Case 'QuickSpec.Vanilla tests, Test that Quick and Nimble are setup, false is always false' started at 2019-06-13 11:19:09.502
Test Case 'QuickSpec.Vanilla tests, Test that Quick and Nimble are setup, false is always false' passed (0.0 seconds)
Test Case 'QuickSpec.Vanilla tests, Test that Quick and Nimble are setup, false is not true' started at 2019-06-13 11:19:09.502
Test Case 'QuickSpec.Vanilla tests, Test that Quick and Nimble are setup, false is not true' passed (0.0 seconds)
Test Case 'QuickSpec.Vanilla tests, Test that Quick and Nimble are setup, true is not false' started at 2019-06-13 11:19:09.502
Test Case 'QuickSpec.Vanilla tests, Test that Quick and Nimble are setup, true is not false' passed (0.0 seconds)
Test Suite 'QuickSpec' passed at 2019-06-13 11:19:09.502
         Executed 4 tests, with 0 failures (0 unexpected) in 0.001 (0.001) seconds
Test Suite 'debug.xctest' passed at 2019-06-13 11:19:09.502
         Executed 4 tests, with 0 failures (0 unexpected) in 0.001 (0.001) seconds
Test Suite 'All tests' passed at 2019-06-13 11:19:09.502
         Executed 4 tests, with 0 failures (0 unexpected) in 0.001 (0.001) seconds
  1. start that the server by the commad:
//bash
swift run

The output:

[2/2] Linking ./.build/x86_64-unknown-linux/debug/RestKitura
[2019-06-13T11:31:13.344-04:00] [VERBOSE] [Kitura.swift:160 run()] Starting Kitura framework...
[2019-06-13T11:31:13.354-04:00] [VERBOSE] [Kitura.swift:177 start()] Starting an HTTP Server on port 8080...
[2019-06-13T11:31:13.354-04:00] [INFO] [HTTPServer.swift:237 listen(_:)] Listening on port 8080
[2019-06-13T11:31:13.354-04:00] [VERBOSE] [HTTPServer.swift:238 listen(_:)] Options for port 8080: maxPendingConnections: 100, allowPortReuse: false
  1. Test the server by navigating to http://localhost:8080

helloWorld

or by using Curl in another terminal:

//bash
curl http://localhost:8080/

The output:

Hello world

The server log for each request:

[2019-06-13T11:35:18.420-04:00] [VERBOSE] [HTTPServerRequest.swift:333 parsingCompleted()] HTTP request from=192.168.56.102; proto=http;
[2019-06-13T11:35:18.597-04:00] [VERBOSE] [HTTPServerRequest.swift:333 parsingCompleted()] HTTP request from=192.168.56.102; proto=http;
[2019-06-13T11:40:36.725-04:00] [VERBOSE] [HTTPServerRequest.swift:333 parsingCompleted()] HTTP request from=127.0.0.1; proto=http;

Step 2: Application refactoring

  • Add a new module Application with all the logic and that can be easily tested.
  • RestKitura depends only on Application
  • Add /health route

health

  • Add a monitoring dashboard at /swiftmetrics-dash

dashboard

TODO

  • Add models
  • Add CRUD routes
  • Add models persitence

GitHub

link
Stars: 0
Last commit: 4 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics