Skip to content

kcsuraj/aws-cognito-amplify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Aws Cognito Amplify

The Amplify Framework uses Amazon Cognito as the main authentication provider. Amazon Cognito is a robust user directory service that handles user registration, authentication, account recovery & other operations.

We are using aws amplify package provided by Amazon for developing authentication workflow in the frontend. It is a JavaScript library for frontend and mobile developers building cloud-enabled applications.

Note: We are using @aws-amplify/ui-react. This library leverages shared Web Components (browser feature that provides a standard component model for the Web), enabling consistent UI styling and interactions.

There is a a different library aws-amplify-react which is considered legacy by AWS.

Demo

https://kcsuraj.github.io/aws-cognito-amplify

Development

Enivronment variables

Create .env file from the .env.sample present and add configurations from aws cognito dashboard. Current .env.sample looks like this:

REACT_APP_AWS_COGNITO_REGION=
REACT_APP_AWS_USER_POOLS_ID=
REACT_APP_AWS_USER_POOLS_WEB_CLIENT_ID=

Available Scripts

Npm Script Description
dev Runs app in development mode
build Builds the app for production to the build folder.
test Launches the test runner in the interactive watch mode.

Amplify UI Theme Customization

We can update the amplify css variables to change color and size of amplify UI components in index.css. Find the full list of customization options here.

/* Customize Amplify UI theme */
:root {
  --amplify-primary-color: #47a899;
  --amplify-primary-tint: #65a89e;
  --amplify-primary-shade: #2c7469;
}

Important Links