npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

aws-cognito-hosted-ui-provider

v1.0.5

Published

A client-facing sdk, that wraps api calls to aws-cognito's hosted ui auth server, and handles oauth 2 authentication by refreshing access tokens, storing credentials locally, revoking sessions and tokens, and navigating to the hosted ui for a new authori

Downloads

9

Readme

AWS-Cognito-Hosted-UI-Authentication-Provider

A library that wraps api calls to aws-cognito's hosted ui auth server, and manages tokens on the client-side.

NPM Downloads

What does it do?

This library handles oauth 2 authentication by refreshing access tokens, storing credentials locally, revoking sessions and tokens, and auto-navigating to the hosted ui for a new authorization code, when access tokens have expired. Can be used for both SSR (Sever-side rendered) and CSR (Client-side rendered) apps, although CSR apps may require extra-setup.

Installation

npm install aws-cognito-hosted-ui-provider

Minimal Setup

const appAuthUserDomain = process.env.REACT_APP_AUTH_DOMAIN;
const userPoolId = process.env.REACT_APP_AWS_USER_POOL_ID;
const clientId = process.env.REACT_APP_AWS_USER_POOL_CLIENT_ID;
const cognitoClient = new CognitoAuthentication({
  userPoolId: userPoolId,
  clientId: clientId,
  customHostedUIDomain: appAuthUserDomain,
});

userPoolId: The id of your coginto user pool clientId: The id of your cognito user pool web client. customHostedUIDomain: The domain of your hosted ui server

If you want, you can also set a loginCallbackUrl and a logoutCallbackUrl, but if they aren't set, they will be set to the original page's origin. You must ensure that these values are also accepted callback URLs and sign-out URLs, in your aws cognitio user pool client app.

Options

This library a pop-up auth flow, or an in tab auth flow.

In-Tab Auth Flow

This is the default auth flow, when popUpWindow = false | undefined

This is the preferred method for server-side rendered apps, as it does not lead the user away from the current tab or window. Here, the user is redirected to the hosted ui server page, and asked to login. After logging in, the authorization code is sent back in the callback url's parameters, and is automatically retrieved and deleted from the url, by this library. This library then handles the rest of the outh2 flow process, including the validation of the code, and verification of tokens.

Pop-up Auth Flow

This is the auth flow, when popUpWindow = true

This is the preferred method for client-side-rendered apps, as it does not navigate away from the current tab or window, and therefore, any data or states on the current page can be maintained. Here, the a pop-up to the hosted ui is generated, and the user is asked to login. After logging in, the pop-window is redirected to the callback url, WHICH MUST HAVE THE SAME ORIGIN as the original page. The authorization code is then read from the pop-up window's url, and the library on the original page, handles the rest of the authentication. The pop-up window is automatically closed after the code is read.

To prevent collision, where callback url page and the original page are exchanging a code at the same time, there is a 500ms delay before exchanging a code for credentials. This ensures the original page will always be able to exchange the code first, and store the credentials.

Exposed Methods

  • login: Handles the entire oauth 2 login process. Meant to be used on a login button, or upon initial page load. Underneath, it uses the refreshAccessToken, handlePopUpLogin, handleCode, usedStoredCredentials, and navigateToHostedUI methods.

  • logout: Handles the entire logout process. Meant to be used on a logout button. Underneath, it uses the revokeCurrentTokens, and revokeUserSession methods

  • refreshAccessToken: Uses the current refresh token to refresh your access tokens. If refresh tokens are invalid, it will navigate back to the hosted ui

  • isAuthenticated: Verifies if user is logged in by validating whether there are active credentials being stored

  • revokeCurrentTokens: Revokes refresh token and all associated access tokens. Individual access tokens cannot be revoked according to AWS, however, they are short-lived and expire.

  • revokeSession: Revokes the current user session

  • usedStoredCredentials: Fetches recently used credentials from local storage. This is how we maintain state even a user closes the tab or browser, and hasn't logged out.

  • handleCode: Handles the exchange of an authorization code in the url parameters, for client credentials

  • handlePopUpLogin: Handles logging in through a pop-up window

  • navigateToHostedUI: Navigates to the hosted ui page.

Further Documentation

For in-depth documentation about the various options, refer to our docs