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 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-aws-cognito

v1.0.15

Published

This packages contains Higher-Order-Components which hide the implementation of using AWS-Cognito.

Readme

react-aws-cognito

This packages contains Higher-Order-Components which hide the implementation of using AWS-Cognito.

Simply wrap a Presentational Component with the appropriate HOC, and it will automagically work with cognito.

Set-up

Environment vars.

Add the following env vars to your application....

USER_POOL_ID=

APP_CLIENT_ID=

IDENTITY_POOL_ID=

COGNITO_REGION=

...adding values to the right side from your AWS-Cognito pool.

I personally use https://www.npmjs.com/package/webpack-dotenv-plugin to get this set up

Redux: Add Reducer to Store

Add the 'react-aws-cognito' reducer to your store.

Typically one would use combine reducers....

import {combineReducers} from 'redux'
import {reducer as cognito} from 'react-aws-cognito'
import yourAppReducer from './reducer'

const combinedReducers = combineReducers({
  cognito,
  yourAppReducer
})

export default combinedReducers

It MUST be named 'cognito' so ensure that the import stays as import {reducer as cognito} from 'react-aws-cognito'

Examples

Login

import React, {Component} from 'react'
import PropTypes from 'prop-types'
import { asAuthenticateUserHandler } from 'react-aws-cognito'

class AuthenticateUser extends Component {
  static propTypes = {
    username: PropTypes.string.isRequired,
    password: PropTypes.string.isRequired,
    onInputChanged: PropTypes.func.isRequired,
    onSubmit: PropTypes.func.isRequired,
    isFormValid: PropTypes.bool.isRequired,
    isFetching: PropTypes.bool.isRequired,
    error: PropTypes.string.isRequired
  }

  handleSubmit = (e) => {
    e.preventDefault()
    this.props.onSubmit()
  }

  handleChange = event => {
    this.props.onInputChanged(event.target.id, event.target.value)
  }

  render () {
    const {username, password, isFetching, isFormValid, error} = this.props

    return (
      <div>
        <p>Login</p>
        {isFetching ? <p>Checking....</p> : null}
        {error ? <p color='danger'>{error}</p> : null}        
        <form noValidate autoComplete="off" onSubmit={this.handleSubmit}>
          <input
            id="username"
            value={username}
            onChange={this.handleChange} />

          <input
            type='password'
            id='password'
            value={password}
            onChange={this.handleChange} />

          <input type="submit" value="Submit" />
        </form>
      </div>
    )
  }
}

export default asAuthenticateUserHandler(AuthenticateUser)

App / Session

import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { asSessionHandler } from 'react-aws-cognito'
import { BrowserRouter, Route, Switch } from 'react-router-dom'

class App extends Component {
  static propTypes = {
    isLoggedIn: PropTypes.bool.isRequired,
    newPasswordRequired: PropTypes.bool.isRequired,
    emailNeedsVerifying: PropTypes.bool.isRequired
  }

  render () {
    const {isLoggedIn, emailNeedsVerifying, newPasswordRequired} = this.props

    return (
      <BrowserRouter>
        <div>
          <Switch>
            ...
            ...
            ...
          </Switch>
        </div>
      </BrowserRouter>
    )
  }
}

export default asSessionHandler(App)