Going Serverless (The Book + Code)
Going Serverless
Building Scalable Applications with the Serverless Framework and AWS Lambda
About the Book
When you have a great idea, the last thing you want to do is set up infrastructure. Learn more.
Going Serverless is a practical guide to building scalable applications with the Serverless framework and AWS Lambda. In this book, you will how to design, develop, test, deploy, monitor, and secure Serverless applications from planning to production.
What Readers Are Saying
I'm a Front-end Developer and I'm starting my learning journey about serverless architectures. I've searched for many books and resources online about serverless but I ended up reading and loving your book Going Serverless. Thanks for writing such a great book (Read the sample!) Have a nice day!
-- Tushar Sharma
Just wanted to drop you an email to thank you for doing the Serverless Go book. I have actually been looking to learn this area, bought your book, and will be going over it this weekend. Keep writing and shipping!
-- Daniel Ong
I stumbled across your blog because I was curious about doing auth in a serverless environment. It was so well-written that when I stumbled across your Going Serverless book, I had to buy it :)
-- Curtis Ekstrom
I just wanted to say thank you for your awesome article on Serverless Go. I’ve been struggling so much on that topic, but your article and code made it so clear on how to accomplish it. Look forward to reading more of your stuff (I bookmarked your site!)
-- Randy Lough
Frequently Asked Questions
What programming language are we using?
Javascript (ES2015.)
Which FaaS provider are we using?
Amazon Web Services (AWS Lambda.)
Is there source code available?
Yes. You will gain access to working code samples with your purchase. There are 8 ready-to-deploy code samples included with the book.
I have a question! I have a suggestion!
All feedback are welcome! You can send in your questions, comments, issues, and suggestions here.
Who Should Read This Book?
This book is aimed at developers with a basic understanding of the web, HTTP, and server-side technologies. You also need working knowledge of JavaScript, Node, and NPM. You don't need any prior background in AWS nor in serverless architectures.
Bundles that include this book
Table of Contents
-
1. Introduction to Serverless
- 1.1 Moving to the Cloud
- 1.2 Enter Serverless
-
1.3 From PaaS to FaaS
- 1.3.1 PaaS
- 1.3.2 FaaS
-
1.4 From Monolith to Microservices to Functions
- 1.4.1 Where Functions fit in
-
1.5 FaaS Concepts
- 1.5.1 Functions
- 1.5.2 Events
- 1.5.3 Resources
- 1.6 FaaS Execution Model
-
1.7 Traditional Scaling vs. Serverless
- 1.7.1 AWS Lambda Costs
-
1.8 AWS Lambda Limits
- 1.8.1 Invocation Limits
- 1.8.2 Concurrency Limits
- 1.8.3 AWS Lambda Limit Errors
- 1.8.4 Increasing your concurrency limit
-
1.9 Use Cases
- 1.9.1 Event-driven File Processing
- 1.9.2 Web Applications
- 1.9.3 Webhooks
- 1.9.4 Scheduled Tasks
-
1.10 Benefits
- 1.10.1 High Availability and Scalability
- 1.10.2 Less Ops
- 1.10.3 Granular Billing
-
1.11 Drawbacks
- 1.11.1 Vendor lock-in
- 1.11.2 Lack of control
- 1.11.3 Integration Testing is hard
- 1.12 FaaS Providers
- 1.13 Chapter Summary
-
2. The Serverless Framework
- 2.1 Introduction
-
2.2 Installation
- 2.2.1 Install Node Version Manager
- 2.2.2 Install Node.js
- 2.2.3 Install the Serverless Framework
-
2.3 Getting Started
- 2.3.1 Development Workflow
- 2.3.2 Project structure
-
2.3.3
serverless.yml
- 2.3.4 Serverless Plugins
-
2.4 Additional Setup
- 2.4.1 Amazon Web Services (AWS) Setup
- 2.4.2 Yarn Setup (Optional)
- 2.5 Chapter Summary
-
3. Building your first application
- 3.1 Prerequisites
- 3.2 Project Requirements
- 3.3 Background Information
-
3.4 Hands-on
- 3.4.1 Creating a service
- 3.4.2 Deploying a service
- 3.4.3 Invoking a function
- 3.4.4 Writing code
- 3.4.5 Re-deploying a service
- 3.4.6 Invoking a function
- 3.4.7 Viewing logs
-
3.5 Testing
- 3.5.1 Setup
- 3.5.2 Running tests
- 3.5.3 Testing our handler
- 3.5.4 Error handling
- 3.5.5 Performance testing
- 3.5.6 Removing a service
- 3.6 Chapter Summary
-
4. Building an event-driven image processing pipeline
- 4.1 Prerequisites
- 4.2 Project Requirements
-
4.3 Background Information
- 4.3.1 Amazon Simple Storage Service (S3)
- 4.3.2 Amazon DynamoDB
- 4.3.3 Amazon Rekognition
- 4.3.4 Amazon API Gateway
-
4.4 Design
- 4.4.1 Problem Decomposition
- 4.4.2 Functions
-
4.5 Hands-on
- 4.5.1 Example Application Setup
- 4.5.2 Development
- 4.5.3 Pipeline Summary
- 4.6 Testing
- 4.7 Chapter Summary
-
5. Building a scalable web scraper
- 5.1 Prerequisites
-
5.2 Project Requirements
- 5.2.1 Scrape
- 5.2.2 Crawl
-
5.3 Background Information
- 5.3.1 Fan-out pattern
- 5.3.2 Amazon Simple Notification Service (SNS)
- 5.3.3 AWS Lambda Concurrent Executions
-
5.4 Design
- 5.4.1 Problem Decomposition
-
5.5 Hands-on
- 5.5.1 Example Application Setup
- 5.5.2 Development
- 5.5.3 Scraper Summary
- 5.6 Chapter Summary
-
6. Building a full-stack serverless application
-
6.1 Background Information
- 6.1.1 AWS Cloudfront
- 6.1.2 Hosting static sites on AWS S3 and Cloudfront
- 6.2 Prerequisites
- 6.3 Project Requirements
-
6.4 Design
- 6.4.1 Problem Decomposition
-
6.5 Hands-on
- 6.5.1 Example Application Setup
- 6.5.2 Backend Development
- 6.5.3 Frontend Development
- 6.6 Chapter Summary
-
6.1 Background Information
-
7. Securing your Functions
- 7.1 Authentication & Authorization
-
7.2 JSON Web Tokens (JWT)
- 7.2.1 Authentication Flow
- 7.2.2 Benefits of JWTs
- 7.2.3 Issuing JWTs
- 7.2.4 Verifying JWTs
- 7.2.5 AWS Custom Authorizers
-
7.3 Hands-on
- 7.3.1 Example Application Setup
- 7.3.2 Code Walkthrough
- 7.4 Encrypting secrets with AWS Key Management Service (KMS)
-
7.5 Hands-On
- 7.5.1 Example Application Setup
- 7.5.2 Application Walkthrough
- 7.6 Chapter Summary
-
8. Orchestrating Workflows
- 8.1 Complex Workflows in Microservices
- 8.2 Sagas
-
8.3 Distributed Sagas
- 8.3.1 Defining a Distributed Saga
-
8.4 Saga Execution Coordinator
- 8.4.1 AWS Step Functions
-
8.5 Hands-on
- 8.5.1 Prerequisites
- 8.5.2 Example Application Setup
- 8.5.3 Creating a state machine
- 8.5.4 Executing a state machine
- 8.6 Chapter Summary
-
9. Error Handling
-
9.1 AWS Lambda Retries
- 9.1.1 Synchronous event sources
- 9.1.2 Asynchronous event sources
- 9.1.3 Stream-based event sources
- 9.2 Dead Letter Queues
-
9.3 Hands-on
- 9.3.1 Prerequisites
- 9.3.2 Example Application Setup
- 9.3.3 Configuring a DLQ for a Function
- 9.3.4 Triggering a Failure
- 9.4 Chapter Summary
-
9.1 AWS Lambda Retries
-
10. Monitoring
- 10.1 What is CloudWatch?
-
10.2 Accessing CloudWatch metrics
- 10.2.1 Built-in AWS Lambda Metrics
- 10.2.2 Accessing AWS Lambda metrics
-
10.3 Hands-on
- 10.3.1 Prerequisites
- 10.3.2 Example Application Setup
- 10.3.3 Creating CloudWatch alarms
- 10.3.4 Triggering an Alarm
- 10.4 Chapter Summary
- 11. Where to go from here
- 12. Glossary
The Leanpub 60-day 100% Happiness Guarantee
Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.
See full terms
80% Royalties. Earn $16 on a $20 book.
We pay 80% royalties. That's not a typo: you earn $16 on a $20 sale. If we sell 5000 non-refunded copies of your book or course for $20, you'll earn $80,000.
(Yes, some authors have already earned much more than that on Leanpub.)
In fact, authors have earned$12,307,240writing, publishing and selling on Leanpub.
Learn more about writing on Leanpub
Free Updates. DRM Free.
If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).
Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.
Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.
Learn more about Leanpub's ebook formats and where to read them
Top Books
OpenIntro Statistics
David Diez, Christopher Barr, Mine Cetinkaya-Rundel, and OpenIntroA complete foundation for Statistics, also serving as a foundation for Data Science.
Leanpub revenue supports OpenIntro (US-based nonprofit) so we can provide free desk copies to teachers interested in using OpenIntro Statistics in the classroom and expand the project to support free textbooks in other subjects.
More resources: openintro.org.
Personal Finance
Jason AndersonThis textbook provides an in-depth analysis on personal finance that is both practical and straightforward in its approach. It has been written in such a way that the readers can gain knowledge without getting overwhelmed by the technical terms. Suitable for both beginners and advanced learners.
Getting to Know IntelliJ IDEA
Trisha Gee and Helen ScottIf we treat our IDE as a text editor, we are doing ourselves a disservice. Using a combination of tutorials and a questions-and-answers approach, Getting to Know IntelliJ IDEA will help you find ways to use IntelliJ IDEA that enable you to work comfortably and productively as a professional developer.
R Programming for Data Science
Roger D. PengThis book brings the fundamentals of R programming to you, using the same material developed as part of the industry-leading Johns Hopkins Data Science Specialization. The skills taught in this book will lay the foundation for you to begin your journey learning data science. Printed copies of this book are available through Lulu.
C++20 - The Complete Guide
Nicolai M. JosuttisAll new language and library features of C++20 (for those who know previous C++ versions).
The book presents all new language and library features of C++20. Learn how this impacts day-to-day programming, to benefit in practice, to combine new features, and to avoid all new traps.
Buy early, pay less, free updates.
Other books:
Mastering STM32 - Second Edition
Carmine NovielloWith more than 1200 microcontrollers, STM32 is probably the most complete ARM Cortex-M platform on the market. This book aims to be the most complete guide around introducing the reader to this exciting MCU portfolio from ST Microelectronics and its official CubeHAL and STM32CubeIDE development environment.
Stats One
William FooteMachine Learning Q and AI
Sebastian Raschka, PhDHave you recently completed a machine learning or deep learning course and wondered what to learn next? With 30 questions and answers on key concepts in machine learning and AI, this book provides bite-sized bits of knowledge for your journey to becoming a machine learning expert.
Ansible for DevOps
Jeff GeerlingAnsible is a simple, but powerful, server and configuration management tool. Learn to use Ansible effectively, whether you manage one server—or thousands.
Gradual Modularization for Ruby and Rails
Stephan HagemannGet yourself a new tool to manage your Rails application and your growing engineering organization! Prevent the ball-of-mud (and fix it!). Go for microservices or SOA if it makes sense not just because you don't have any other tool. Do all this through a low-overhead tool: packages. Enable better conversations to make practical changes today.
Top Bundles
- #1
Software Architecture
2 Books
"Software Architecture for Developers" is a practical and pragmatic guide to modern, lightweight software architecture, specifically aimed at developers. You'll learn:The essence of software architecture.Why the software architecture role should include coding, coaching and collaboration.The things that you really need to think about before... - #2
CCIE Service Provider Ultimate Study Bundle
2 Books
Piotr Jablonski, Lukasz Bromirski, and Nick Russo have joined forces to deliver the only CCIE Service Provider training resource you'll ever need. This bundle contains a detailed and challenging collection of workbook labs, plus an extensively detailed technical reference guide. All of us have earned the CCIE Service Provider certification... - #3
1500 QUIZ COMMENTATI (3 libri)
3 Books
Tre libri dei QUIZ MMG Commentati al prezzo di DUE! I QUIZ dei concorsi ufficiali di Medicina Generale relativi agli anni: 2000-2001-2003-2012-2013-2014-2015-2016-2017-2018-2019-2020-2021 +100 inediti Raccolti in unico bundle per aiutarvi nello studio e nella preparazione al concorso. All'interno di ogni libro i quiz sono stati suddivisi per... - #4
Pattern-Oriented Memory Forensics and Malware Detection
2 Books
This training bundle for security engineers and researchers, malware and memory forensics analysts includes two accelerated training courses for Windows memory dump analysis using WinDbg. It is also useful for technical support and escalation engineers who analyze memory dumps from complex software environments and need to check for possible... - #5
Practical FP in Scala + Functional event-driven architecture
2 Books
Practical FP in Scala (A hands-on approach) & Functional event-driven architecture, aka FEDA, (Powered by Scala 3), together as a bundle! The content of PFP in Scala is a requirement to understand FEDA so why not take advantage of this bundle!? - #7
Linux Administration Complet
4 Books
Ce lot comprend les quatre volumes du Guide Linux Administration :Linux Administration, Volume 1, Administration fondamentale : Guide pratique de préparation aux examens de certification LPIC 1, Linux Essentials, RHCSA et LFCS. Administration fondamentale. Introduction à Linux. Le Shell. Traitement du texte. Arborescence de fichiers. Sécurité... - #9
Development and Deployment of Multiplayer Online Games, Part ARCH. Architecture (Vol. I-III)
3 Books
What's the Big Idea? The idea behind this book is to summarize the body of knowledge that already exists on multiplayer games but is not available in one single place.And quite a fewof the issues discussed within this series (planned as three nine volumes ~300 pages each), while known in the industry, have not been published at all (except for... - #10
Modern C++ Collection
3 Books
Get All about Modern C++C++ Standard Library, including C++20Concurrency with Modern C++, including C++20C++20Each book has about 200 complete code examples. Updates are included. When I update one of the books, you immediately get the updated bundle. You can expect significant updates to each new C++ standard (C++23, C++26, .. ) and also...