Skip to content

AWS Amplify

Getting Started

# Install Cli
npm i -g amplify-cli

# Init Project
amplify init

# Status
amplify status

# Delete
amplify delete

# Add Feature
amplify add auth
amplify add analytics
amplify add api
amplify configure api
amplify update api

# Environment
amplify env list
amplify env add
amplify env remove <env>
amplify env checkout <env>

# Add Library to project
npm install aws-amplify

# Add framework-specific library
npm install aws-amplify-react

React Libs

yarn add aws-amplify aws-amplify-react
# Or
npm install aws-amplify aws-amplify-react