Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Serverless Application Model | 9,034 | 84 | 15 | 3 days ago | 59 | June 07, 2022 | 124 | apache-2.0 | Python | |
The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates. | ||||||||||
Aws Sam Cli | 6,315 | 31 | 12 | a day ago | 129 | June 29, 2022 | 366 | apache-2.0 | Python | |
CLI tool to build, test, debug, and deploy Serverless applications using AWS SAM | ||||||||||
Goformation | 807 | 44 | a day ago | 62 | June 10, 2021 | 50 | apache-2.0 | Go | ||
GoFormation is a Go library for working with CloudFormation templates. | ||||||||||
Gofaas | 698 | 5 years ago | 21 | apache-2.0 | Go | |||||
A boilerplate Go and AWS Lambda app. Demonstrates an expert configuration of 10+ AWS services to support running Go functions-as-a-service (FaaS). | ||||||||||
Cloudfront Authorization At Edge | 364 | 9 days ago | 7 | mit-0 | TypeScript | |||||
Protect downloads of your content hosted on CloudFront with Cognito authentication using cookies and [email protected] | ||||||||||
Aws Cognito Apigw Angular Auth | 290 | 2 years ago | other | JavaScript | ||||||
A simple/sample AngularV4-based web app that demonstrates different API authentication options using Amazon Cognito and API Gateway with an AWS Lambda and Amazon DynamoDB backend that stores user details in a complete end to end Serverless fashion. | ||||||||||
Aws Serverless Samfarm | 276 | 3 years ago | 6 | apache-2.0 | JavaScript | |||||
This repo is full CI/CD Serverless example which was used in the What's New with AWS Lambda presentation at Re:Invent 2016. | ||||||||||
Serverless Sinatra Sample | 206 | a year ago | apache-2.0 | Ruby | ||||||
Demo code for running Ruby Sinatra on AWS Lambda | ||||||||||
Serverless Ide Vscode | 174 | 3 | 4 months ago | 11 | January 30, 2023 | 18 | TypeScript | |||
Serverless IDE: Enhanced support for AWS SAM and CloudFormation in VS Code | ||||||||||
Hands On Serverless Applications With Go | 98 | 4 months ago | 18 | mit | Go | |||||
Hands-On Serverless Applications with Go, published by Packt. |
The AWS Serverless Application Model (SAM) is an open-source framework for building serverless applications. It provides shorthand syntax to express functions, APIs, databases, and event source mappings. With just a few lines of configuration, you can define the application you want and model it.
To get started with building SAM-based applications, use the SAM CLI. SAM CLI provides a Lambda-like execution environment that lets you locally build, test, debug, and deploy applications defined by SAM templates.
Next Steps: Learn to build a more complex serverless application.
Detailed References: Explains SAM commands and usage in depth.
Single-deployment configuration. SAM makes it easy to organize related components and resources, and operate on a single stack. You can use SAM to share configuration (such as memory and timeouts) between resources, and deploy all related resources together as a single, versioned entity.
Local debugging and testing. Use SAM CLI to locally build, test, and debug SAM applications on a Lambda-like execution environment. It tightens the development loop by helping you find & troubleshoot issues locally that you might otherwise identify only after deploying to the cloud.
Deep integration with development tools. You can use SAM with a suite of tools you love and use.
Built-in best practices. You can use SAM to define and deploy your infrastructure as configuration. This makes it possible for you to use and enforce best practices through code reviews. Also, with a few lines of configuration, you can enable safe deployments through CodeDeploy, and can enable tracing using AWS X-Ray.
Extension of AWS CloudFormation. Because SAM is an extension of AWS CloudFormation, you get the reliable deployment capabilities of AWS CloudFormation. You can define resources by using CloudFormation in your SAM template. Also, you can use the full suite of resources, intrinsic functions, and other template features that are available in CloudFormation.
This GitHub repository contains the SAM Specification, the Python code that translates SAM templates into AWS CloudFormation stacks and lots of example applications. In the words of SAM developers:
SAM Translator is the Python code that deploys SAM templates via AWS CloudFormation. Source code is high quality (95% unit test coverage), with tons of tests to ensure your changes don't break compatibility. Change the code, run the tests, and if they pass, you should be good to go! Clone it and run
make pr
!
We love our contributors ❤️ We have over 100 contributors who have built various parts of the product. Read this testimonial from @ndobryanskyy to learn more about what it was like contributing to SAM.
Depending on your interest and skill, you can help build the different parts of the SAM project;
Enhance the SAM Specification
Make pull requests, report bugs, and share ideas to improve the full SAM template specification. Source code is located on Github at awslabs/serverless-application-model. Read the SAM Specification Contributing Guide to get started.
Strengthen SAM CLI
Add new commands or enhance existing ones, report bugs, or request new features for the SAM CLI. Source code is located on Github at awslabs/aws-sam-cli. Read the SAM CLI Contributing Guide to get started.
Update SAM Developer Guide
SAM Developer Guide provides comprehensive getting started guide and reference documentation. Source code is located on Github at awsdocs/aws-sam-developer-guide. Read the SAM Documentation Contribution Guide to get started.
Join the SAM developers channel (#samdev) on Slack to collaborate with fellow community members and the AWS SAM team.