1.0.0 • Published 4 years ago

jwks-source v1.0.0

Weekly downloads
2
License
BSD-3-Clause
Repository
github
Last release
4 years ago

Build Status npm version

jwks-source

Module for retrieving JWKS

Features

  • Synchronous and asynchronous methods
  • Node.js 12.x compatible, works in AWS Lambda environments

Installation

Install via npm.

npm install jwks-source --save

Getting Started

const { Provider } = require( 'jwks-source' );

const jwks = Provider.AWSCognito({

		userPoolId = 'us-east-1_ZLPZ8Z7yS',
		region: 'us-east-1'
	}).getAsync();

// jwks.keys = [ { jws instance}, ... ]

// jwks.id( kid )	// to get with a specific id

Feedback

We'd love to get feedback on how to make this tool better. Feel free to contact us at feedback@vandium.io

License

BSD-3-Clause