oidc-provider

OAuth 2.0 Authorization Server implementation for Node.js with OpenID Connect

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
oidc-provider
3,04308.4.6a month ago8 years agoMinified + gzip package size for oidc-provider in KB

Readme

oidc-provider
This module provides an OAuth 2.0 (RFC 6749oauth2) Authorization Server with support for OpenID Connect (OIDCopenid-connect) and many other additional features and standards.
Table of Contents

Implemented specs & features

The following specifications are implemented by oidc-provider (not exhaustive):
Note that not all features are enabled by default, check the configuration section on how to enable them.
- OIDC Dynamic Client Registration 1.0registration - RFC7591 - OAuth 2.0 Dynamic Client Registration Protocoloauth2-registration - RFC7592 - OAuth 2.0 Dynamic Client Registration Management Protocolregistration-management
Supported Access Token formats:

The following draft specifications are implemented by oidc-provider:

Updates to draft specification versions are released as MINOR library versions, if you utilize these specification implementations consider using the tilde ~ operator in your package.json since breaking changes may be introduced as part of these version updates. Alternatively acknowledge the version and be notified of breaking changes as part of your CI.

Certification

OpenID Certificationopenid-certified-link
Filip Skokan has certifiedopenid-certified-link that oidc-providernpm-url conforms to the following profiles of the OpenID Connectâ„¢ protocol.
  • Basic, Implicit, Hybrid, Config, Dynamic, Form Post, and 3rd Party-Init OP profiles
  • Back-Channel Logout and RP-Initiated Logout
  • FAPI 1.0 Advanced (w/ Private Key JWT, MTLS, JARM, PAR, CIBA)

Sponsor

auth0-logosponsor-auth0 If you want to quickly add OpenID Connect authentication to Node.js apps, feel free to check out Auth0's Node.js SDK and free plan. Create an Auth0 account; it's free!sponsor-auth0

Support

If you or your company use this module, or you need help using/upgrading the module, please consider becoming a sponsorsupport-sponsor so I can continue maintaining it and adding new features carefree. The only way to guarantee you get feedback from the author & sole maintainer of this module is to support the package through GitHub Sponsors.

Documentation & Configuration

oidc-provider can be mounted to existing connect, express, fastify, hapi, or koa applications, see how. The provider allows to be extended and configured in various ways to fit a variety of uses. See the documentation and example folder.
import Provider from 'oidc-provider';
const configuration = {
  // refer to the documentation for other available configuration
  clients: [{
    client_id: 'foo',
    client_secret: 'bar',
    redirect_uris: ['http://lvh.me:8080/cb'],
    // ... other client properties
  }],
};

const oidc = new Provider('http://localhost:3000', configuration);

oidc.listen(3000, () => {
  console.log('oidc-provider listening on port 3000, check http://localhost:3000/.well-known/openid-configuration');
});

Recipes

Collection of useful configuration use cases are available over at recipes.

Events

oidc-provider instances are event emitters, using event handlers you can hook into the various actions and i.e. emit metrics that react to specific triggers. See the list of available emitted event names and their description.