Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
July 29, 2020 01:24 pm GMT

Deploy HTTP Services Written in Swift to AWS in Seconds

Recently, Apple announced the Swift AWS Lambda Runtime. It's now possible to write self-contained functions that run on AWS using the same Swift you use for iOS development. This lets you not only reuse the knowledge you already have of Swift, but also share code between the server and client. However, everything is still a little bit complicated to set up. To help you get started faster, we've built a starting point for writing an HTTP service in Swift, which does everything you need by running a single script.

Image shows a terminal window with the deployment process of an AWS Lambda written in Swift finished

Swift Lambda contains configuration files and scripts to fully automate deploying to AWS in a matter of seconds using the Serverless Framework. It is based on samples and documentation from swift-server/swift-aws-lambda-runtime.

Getting started

  1. Clone the repository: https://github.com/GetStream/swift-lambda

  2. Install Docker

  3. Install the Serverless Framework

  4. Configure the AWS Credentials

  5. Write your code in Sources/Lambda/main.swift

  6. Deploy by running ./Scripts/deploy.sh

  7. Open the output URL in your browser.

Image shows a browser on an AWS Lambda URL showing the words "Hello, world!" output from the swift code

Writing code

There is some code already present in the Sources/Lambda/main.swift file. It simply outputs "Hello, world!" in plain text.

If you want to output some HTML, just set the "Content-Type" header to "text/html; charset=UTF-8"

Image shows a browser on an AWS Lambda URL showing the words "Hello, world! From Swift 5.2  and a User Agent string" output from the swift code

For more information on the available settings and methods, refer to the Swift AWS Lambda Runtime README

Configuring the endpoint

To change some characteristics of your HTTP endpoint, such as the method expected, you should modify the serverless.yml file. For more information on the available parameters, refer to the Serverless.yml Reference

Contributing

If you have a suggestion or bug report, please file an issue in the Swift Lambda repository. If you want to take a stab at contributing code, don't hesitate in submitting a PR. Don't forget to leave a star if you liked it :)


Original Link: https://dev.to/cardoso/deploy-http-services-written-in-swift-to-aws-in-seconds-4328

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To