Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Pipedream | 7,511 | 57 | a day ago | 13 | November 18, 2023 | 1,727 | other | JavaScript | ||
Connect APIs, remarkably fast. Free for developers. | ||||||||||
Aws Sam Cli | 6,395 | 31 | 13 | a day ago | 177 | November 16, 2023 | 414 | apache-2.0 | Python | |
CLI tool to build, test, debug, and deploy Serverless applications using AWS SAM | ||||||||||
Wrangler Legacy | 3,219 | 4 | 25 | 4 months ago | 78 | February 21, 2023 | apache-2.0 | Rust | ||
🤠 Home to Wrangler v1 (deprecated) | ||||||||||
Amplify Cli | 2,769 | 68 | a day ago | 477 | May 09, 2023 | 706 | apache-2.0 | TypeScript | ||
The AWS Amplify CLI is a toolchain for simplifying serverless web and mobile development. | ||||||||||
Cloudbase Framework | 1,918 | 23 | 8 months ago | 130 | August 23, 2022 | 37 | other | JavaScript | ||
腾讯云开发云原生一体化部署工具 🚀 CloudBase Framework:一键部署,不限框架语言,云端一体化开发,基于Serverless 架构。A front-end and back-end integrated deployment tool. One-click deploy to serverless architecture. https://docs.cloudbase.net/framework/index | ||||||||||
Workers Sdk | 1,896 | 3 | 237 | a day ago | 1,811 | November 28, 2023 | 469 | apache-2.0 | TypeScript | |
⛅️ Home to Wrangler, the CLI for Cloudflare Workers® | ||||||||||
Inngest | 1,023 | 4 | a day ago | 68 | November 27, 2023 | 33 | other | Go | ||
Inngest is the developer platform for easily building reliable workflows with zero infrastructure. | ||||||||||
Sls Dev Tools | 852 | 1 | 7 months ago | 41 | March 04, 2021 | 45 | mit | JavaScript | ||
Dev Tools for the Serverless World - Issues, PRs and ⭐️welcome! | ||||||||||
Fly | 825 | 9 | 9 | 3 years ago | 52 | April 15, 2020 | 5 | apache-2.0 | ||
Deploy app servers close to your users. Package your app as a Docker image, and launch it in 17 cities with one simple CLI. | ||||||||||
Riff | 799 | 2 | 3 years ago | 8 | April 06, 2018 | apache-2.0 | ||||
riff is for functions |
The AWS Amplify CLI is a toolchain which includes a robust feature set for simplifying mobile and web application development. The CLI uses AWS CloudFormation and nested stacks to allow you to add or modify configurations locally before you push them for execution in your account.
Install and configure the Amplify CLI as follows:
$ npm install -g @aws-amplify/cli
$ amplify configure
Note: If you're having permission issues on your system installing the CLI, please try the following command:
$ sudo npm install -g @aws-amplify/cli --unsafe-perm=true
$ amplify configure
The Amplify CLI supports the commands shown in the following table.
Command | Description |
---|---|
amplify configure | Configures the AWS access credentials, AWS Region and sets up a new AWS User Profile |
amplify init | Initializes a new project, sets up deployment resources in the cloud and prepares your project for Amplify. |
amplify configure project | Updates configuration settings used to setup the project during the init step. |
amplify add <category>
|
Adds cloud features to your app. |
amplify update <category>
|
Updates existing cloud features in your app. |
amplify push [--no-gql-override] | Provisions cloud resources with the latest local developments. The 'no-gql-override' flag does not automatically compile your annotated GraphQL schema and will override your local AppSync resolvers and templates. |
amplify pull | Fetch upstream backend environment definition changes from the cloud and updates the local environment to match that definition. |
amplify publish | Runs amplify push , publishes a static assets to Amazon S3 and Amazon CloudFront (*hosting category is required). |
amplify status [ <category> ...] |
Displays the state of local resources that haven't been pushed to the cloud (Create/Update/Delete). |
amplify status -v [ <category> ...] |
Verbose mode - Shows the detailed verbose diff between local and deployed resources, including cloudformation-diff |
amplify serve | Runs amplify push , and then executes the project's start command to test run the client-side application. |
amplify delete | Deletes resources tied to the project. |
amplify help | amplify <category> help |
Displays help for the core CLI. |
amplify codegen add | generate | Performs generation of strongly typed objects using a GraphQL schema. |
amplify env add | list | remove | get | pull | import | checkout | See the multienv docs. |
To set up your local development environment, go to Local Environment Setup.
To test your category, do the following:
cd <your-test-front-end-project>
amplify-dev init
amplify-dev <your-category> <subcommand>
Before pushing code or sending a pull request, do the following:
yarn lint
at the top-level directory. This invokes eslint to check for lint errors in all of our packages.yarn lint
to find some of the lint errors. To attempt fix them, go to the package that has errors and run yarn lint-fix
We are thankful for any contributions from the community. Look at our Contribution Guidelines.