/Hands-On-Full-Stack-Development-with-Swift

Hands-On Full-Stack Development with Swift, published by Packt

Primary LanguageSwiftMIT LicenseMIT

Hands-On Full-Stack Development with Swift

This is the code repository for Hands-On Full-Stack Development with Swift, authored by Ankur Patel, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

Making Swift an open-source language enabled it to share code between a native app and a server. Building a scalable and secure server backend opens up new possibilities, such as building an entire application written in one language—Swift.

This book gives you a detailed walk-through of tasks such as developing a native shopping list app with Swift and creating a full-stack backend using Vapor (which serves as an API server for the mobile app). You'll also discover how to build a web server to support dynamic web pages in browsers, thereby creating a rich application experience.

You’ll begin by planning and then building a native iOS app using Swift. Then, you'll get to grips with building web pages and creating web views of your native app using Vapor. To put things into perspective, you'll learn how to build an entire full-stack web application and an API server for your native mobile app, followed by learning how to deploy the app to the cloud, and add registration and authentication to it.

Once you get acquainted with creating applications, you'll build a tvOS version of the shopping list app and explore how easy is it to create an app for a different platform with maximum code shareability. Towards the end, you’ll also learn how to create an entire app for different platforms in Swift, thus enhancing your productivity.

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

@IBAction func didSelectAdd(_ sender: UIBarButtonItem) {
  requestInput(title: "Shopping list name",
    message: "Enter name for the new shopping list:",
    handler: { listName in
      let listCount = self.lists.count
      ShoppingList(name: listName).save() { list in
        self.lists.append(list)
        self.tableView.insertRows(at: [IndexPath(row: listCount, 
        section: 0)], with: .top)
      }
    })
}

You should have basic knowledge of the following topics:

  • Swift
  • Xcode
  • Storyboard and Autolayout
  • HTML
  • JavaScript
  • CSS
  • Terminal/Command Line Tools

You should also use macOS as we will be using Xcode to build our native apps and our server app.

Related Products

Book Cover

Download a free PDF

If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost.
Simply click on the link to claim your free PDF.

https://packt.link/free-ebook/9781788625241