Multiple Domains

Server-Side Swift with Vapor

The definitive book on building web apps and web APIs using Server-Side Swift with Vapor, written by the creators of the Vapor 4 framework. By Tanner Nelson, Tim Condon & Logan Wright.

Read for Free with the Personal Plan* * Includes this and all other books in our online library See all benefits
Buy Individually $59.99 $29.99* *Includes access to all of our online reading features.

4.5 (2) · 2 Reviews

Download materials
Buy paperback—Amazon Comments
Save for later
Share

Who is this for?

This book is for iOS developers who already know the basics of iOS and Swift development and want to transfer that knowledge to writing server based applications.

Covered concepts

  • HTTP
  • Fluent
  • Controllers
  • Leaf
  • Middleware

Learn how to build web apps and web APIs using Swift and the Vapor 4 framework!

If you’re a beginner to web development, but have worked with Swift for some time, you’ll find it’s easy to create robust, fully featured web apps and web APIs with Vapor 4.

Whether you’re...

more

Before You Begin

This section tells you a few things you need to know before you get started, such as what you’ll need for hardware and software, where to find the project files for this book, and more.

Section I: Creating a Simple Web API

This section teaches you the beginnings of building Vapor applications, including how to use Swift Package Manager. You’ll learn how routing works and how Vapor leverages the power of Swift to make routing type-safe. You’ll learn how to create models, set up relationships between them and save them in a database. You’ll see how to provide an API to access this data from a REST client. Finally, you’ll build an iOS app which leverages this API to allow users to display and interact with the data.

1
Toggle description
Get a quick overview of the history of the Vapor project and how the book is structured.
2
Toggle description
In this chapter, you’ll start by installing the Vapor Toolbox, then use it to build and run your first project. You’ll finish by learning about routing, accepting data and returning JSON.
3
Toggle description
Before you begin your journey with Vapor, you’ll first review the fundamentals of how the web and HTTP operate, including its methods and most common response codes. You’ll also learn how Vapor differs from other Swift frameworks, its benefits, and how it can augment your web development experience.
4
Toggle description
In this chapter, you’ll learn about asynchronous and non-blocking architectures. You’ll discover Vapor’s approach to these architectures and how to use them. Finally, the chapter provides a small overview of SwiftNIO, a core technology used by Vapor.
5
Toggle description
This chapter explains how to use Fluent to save data in Vapor applications. Fluent is Vapor’s ORM or object relational mapping tool. It’s an abstraction layer between the Vapor application and the database, and it’s designed to make working with databases easier.
6
Toggle description
Databases allow you to persist data in your applications. In this chapter you’ll learn how to configure your Vapor application to integrate with the database of your choice. Currently Vapor only has support for relational (SQL) databases but this will change in the future.
7
Toggle description
This chapter concentrates on how to interact with models in the database. You’ll learn about CRUD (Create, Retrieve, Update, Delete) operations and how they relate to REST APIs. You’ll also see how to leverage Fluent to perform complex queries on your models.
8
Toggle description
In previous chapters, you wrote all the route handlers in one file. This isn’t sustainable for large projects as the file quickly becomes too big and cluttered. This chapter introduces the concept of controllers to help manage your routes and models, using both basic controllers and RESTful controllers.
9
Toggle description
In this chapter, you’ll learn how to set up a parent-child relationship between two models. You’ll learn the purpose of these relationships, how to model them in Vapor and how to use them with routes.
10
Toggle description
In this chapter, you’ll learn how to implement the other type of relationship: sibling relationships. You’ll learn how to model them in Vapor and how to use them in routes.
11
Toggle description
In this chapter, you’ll learn how to write tests for your Vapor applications. You’ll learn why testing is important and how it works with Swift Package Manager. Then, you’ll learn how to write tests for the TIL application from the previous chapters. Finally, you’ll see why testing matters on Linux and how to test your code on Linux using Docker.
12
Toggle description
In the previous chapters, you created an API and interacted with it using RESTed. However, users expect something a bit nicer to use TIL! The next two chapters show you how to build a simple iOS app that interacts with the API. In this chapter, you’ll learn how to create different models and get models from the database.
13
Toggle description
In this chapter, you’ll expand the app to include viewing details about a single acronym. You’ll also learn how to perform the final CRUD operations: edit and delete. Finally, you’ll learn how to add acronyms to categories.

Section II: Making a Simple Web App

This section teaches you how to build a front-end web site for your Vapor application. You’ll learn to use Leaf, Vapor’s templating engine, to generate dynamic web pages to display your app’s data. You’ll also learn how to accept data from a browser so that users can create and edit your models. This section will provide you the necessary building blocks to build a full website with Vapor.

Toggle description
In this chapter, you'll learn how to use Leaf, Vapor's templating language, to make simple and dynamic websites using Vapor. Leaf allows you to pass information to a webpage so it can generate the final HTML without knowing everything up front.
Toggle description
In this chapter, you'll learn how to use the Bootstrap framework to add styling to your pages. You'll also learn how to embed templates so you only have to make changes in one place.
Toggle description
In this chapter, you'll learn how to create different models and how to edit acronyms.
Toggle description
In this chapter, you'll learn how to allow users to add categories to acronyms in a user-friendly way.

Section III: Validation, Users & Authentication

This section shows you how to protect your Vapor application with authentication. You’ll learn how to add password protection to both the API and the website, which lets you require users to log in. You’ll learn about different types of authentication: HTTP Basic authentication and token-based authentication for the API, and cookie- and session-based authentication for the web site.

Finally, you’ll learn how to integrate with Google, Github and Apple’s OAuth providers. This allows you to delegate authentication and allow users to utilize their Google, Github or Apple account credentials to access your site.

These chapters will allow you to secure your important routes and keep only allowed routes as unauthenticated. You’ll also learn how to delegate the authentication duties to third party vendors while still keeping your application secure.

Toggle description
In this chapter, you’ll learn how to protect your API with authentication. You’ll learn how to implement both HTTP basic authentication and token authentication in your API. You’ll also learn best practices for storing passwords and authenticating users.
Toggle description
In this chapter, you’ll update both the Tests and the iOS application to work with the new authenticated APIs.
In this chapter you’ll learn how to implement authentication for the TIL website using Cookies & Sessions.
Toggle description
In this chapter, you’ll learn how to use Vapor’s Validation library to verify some of the information users send the application.
Toggle description
In this chapter, you’ll learn how to use OAuth 2.0 to delegate authentication to Google, so users can log in with their Google accounts instead.
Toggle description
In this chapter, you’ll see how to allow users to log in with their GitHub accounts.
Learn how to integrate Sign in with Apple with your Vapor app to use both with iOS and the website.

Section IV: Advanced Server-Side Swift

This section covers a number of different topics you may need to consider when developing server-side applications. These chapters will provide you the necessary building blocks to continue on your Vapor adventure and build even more complex and wonderful applications.

The chapters in this section deal with more advanced topics for Vapor and were written by the Vapor Core Team members. These include the use of Caching, Middleware and how to version your database / api including performing migrations.

Toggle description
Learn how to integrate an email service to send emails to users. You’ll also learn how to use emails to reset user passwords.
Toggle description
Learn how to send files in requests and handle that in your Vapor application. Use this knowledge to allow users to upload profile pictures in the web application.
In this chapter you’ll learn how to migrate your database without having to delete it. You’ll also learn how to use versioning for your applications API’s.
Toggle description
Learn how to make your app feel snappier and more responsive by caching the results of slow processes.
Toggle description
Learn how Middleware integrates into your request and response pipeline to view and if needed mutate incoming requests and outgoing responses.
Toggle description
Learn how to implement WebSockets for real time communication between clients and servers
Toggle description
You’ll lean more advanced features of Fluent such as saving models with enums, using Fluent’s soft delete and timestamp features and learn how to use raw SQL and joins.

Section V: Production & External Deployment

This section shows you how to deploy your Vapor application to external Cloud-based providers to offload the job of hosting your application. You’ll learn how to upload to Heroku, a popular platform for deploying applications as well as deploying to AWS or Docker.

The chapters in this section deal with hosting and production concerns when deploying your Vapor application and how to split your application into multiple services (microservices) to balance the load on your application.

Toggle description
Learn how to deploy a Vapor web app utilizing PostgreSQL to Heroku.
Toggle description
Learn how to deploy with docker using Docker Compose to run containers sharing the same virtual network but isolated from other instances on the same host.
Toggle description
Learn how to deploy your Vapor app to Amazon Web Services (AWS) using some of the service offerings provided.
Toggle description
Learn the advantages and disadvantages of some common deployment methods for Vapor.
Toggle description
Learn how to leverage microservices to split up your code into different applicatons.
Toggle description
Learn about API gateways and how to make microservices accessible to clients.