Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Amplify Cli | 2,752 | 67 | 2 days ago | 477 | May 09, 2023 | 686 | apache-2.0 | TypeScript | ||
The AWS Amplify CLI is a toolchain for simplifying serverless web and mobile development. | ||||||||||
Examples | 2,135 | 5 days ago | 60 | April 22, 2021 | 166 | apache-2.0 | TypeScript | |||
Infrastructure, containers, and serverless apps to AWS, Azure, GCP, and Kubernetes... all deployed with Pulumi | ||||||||||
Serverless | 1,988 | 7 months ago | 120 | mit | TypeScript | |||||
This is intended to be a repo containing all of the official AWS Serverless architecture patterns built with CDK for developers to use. All patterns come in Typescript and Python with the exported CloudFormation also included. | ||||||||||
Awesome Aws Amplify | 1,529 | 2 years ago | ||||||||
Curated list of AWS Amplify Resources | ||||||||||
Serverless Appsync Plugin | 937 | 31 | 7 | 8 days ago | 46 | July 16, 2022 | 117 | mit | TypeScript | |
serverless plugin for appsync | ||||||||||
Aws Serverless Ecommerce Platform | 933 | 5 months ago | 27 | mit-0 | Python | |||||
Serverless Ecommerce Platform is a sample implementation of a serverless backend for an e-commerce website. This sample is not meant to be used as an e-commerce platform as-is, but as an inspiration on how to build event-driven serverless microservices on AWS. | ||||||||||
Jamstack Cms | 712 | 2 years ago | 17 | mit | JavaScript | |||||
Modern full stack CMS. Built with Gatsby, GraphQL, AWS Amplify, and Serverless technologies. | ||||||||||
Awesome Aws Appsync | 618 | 8 months ago | 1 | |||||||
Curated list of AWS AppSync Resources | ||||||||||
Aws Appsync Community | 496 | 10 days ago | 182 | apache-2.0 | HTML | |||||
The AWS AppSync community | ||||||||||
Full Stack Serverless Cdk | 189 | a year ago | 9 | mit | TypeScript | |||||
Learn to Build Full-Stack Serverless Apps and APIs using AWS Cloud Development Kit (CDK) in Baby Steps. |
Deploy AppSync API's in minutes using this Serverless plugin.
npm install serverless-appsync-plugin
service: my-app
plugins:
- serverless-appsync-plugin
provider:
name: aws
appSync:
name: my-api
authentication:
type: API_KEY
resolvers:
Query.user:
dataSource: my-table
dataSources:
my-table:
type: AMAZON_DYNAMODB
config:
tableName: ${sls:stage}-data
This plugin adds some useful CLI commands. See CLI commands documentation
This plugin exports some handy variables that you can use in your yml files to reference some values generated by CloudFormation:
${appsync:id}
: The id of the AppSync API${appsync:url}
: The URL of the AppSync API${appsync:arn}
: The ARN of the AppSync API${appsync:apiKey.[NAME]}
: An API keyExample:
provider:
environment:
APPSYNC_ID: ${appsync:id}
APPSYNC_ARN: ${appsync:arn}
APPSYNC_URL: ${appsync:url}
APPSYNC_API_KEY: ${appsync:apiKey.myKey}
appSync:
name: my-api
authentication:
type: API_KEY
apiKeys:
- name: myKey
To upgrade form v1 of this plugin, follow this guide
If you have any questions, issue, feature request, please feel free to open an issue.
You are also very welcome to open a PR and we will gladly review it.
Thanks goes to these wonderful people 👏
This project follows the all-contributors specification. Contributions of any kind welcome!