In this section, we will be exploring the ins and out of the Serverless Framework using a few cool and easy-to-replicate examples. Here's a quick summary of the use cases that we will be covering in this section:
- Our traditional hello world example, where we will explore how to use Serverless to package and deploy your functions. You will also learn how to include environment variables and other function-related configurations in the Serverless YAML file.
- A more complex example, where we will include other AWS resources to our example in the form of DynamoDB and API Gateway as well.
- Use serverless offline plugins to simulate a DynamoDB, an API Gateway, and Lambda stack offline. This use case is particularly ...