Socket
Book a DemoInstallSign in
Socket

amazon-cognito-identity-js-promises

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amazon-cognito-identity-js-promises

Amazon Cognito Identity Provider JavaScript SDK

0.0.4
latest
npmnpm
Version published
Weekly downloads
34
41.67%
Maintainers
1
Weekly downloads
 
Created
Source

amazon-cognito-identity-js-promises

This package provides promisified version of amazon-cognito-identity-js - Amazon Cognito Identity SDK for JavaScript.

Installation

npm install amazon-cognito-identity-js-promises

Basic Usage

import {
  AuthenticationDetails,
  CognitoUser,
  CognitoUserPool,
} from 'amazon-cognito-identity-js-promises';

const userPool = new CognitoUserPool({
  UserPoolId: '...',
  ClientId: '...',
});

// simple sign-in

try {
  const user = new CognitoUser({
    Pool: userPool,
    Username: 'myUsername',
  });
  user.setAuthenticationFlowType('USER_PASSWORD_AUTH');
  await user.authenticateUser(
    new AuthenticationDetails({
      Username: 'myUsername',
      Password: 'myPassword',
    })
  );
} catch (err) {
  console.error('error signing in', err);
}

console.log('current user', userPool.getCurrentUser());

See amazon-cognito-identity-js for more examples.

FAQs

Package last updated on 13 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.