Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
oidc-provider
Advanced tools
OpenID Provider (OP) implementation for Node.js OpenID Connect servers.
oidc-provider is an OpenID Provider implementation of OpenID Connect. It allows to export a complete mountable or standalone OpenID Provider implementation. This implementation does not force you into any data models or persistance stores, instead it expects you to provide an adapter. A generic in memory adapter is available to get you started.
The provided examples also implement simple user interaction views but those are not forced on you as they do not come as part of the exported application, instead you are encouraged to implement your own unique-looking and functioning user flows.
Table of Contents
This branch is being kept up to date with the latest release, only having the internal dependencies koa2 based, therefore requiring ES7 async/await capable node runtime (or live transpile). There are no extra features or master-unreleased features. 2.0.0 of this library will come when koa2 releases as latest and when ES7 async/await lands in LTS nodejs release (probably LTSv8).
You can use this library if you already use node stable with --harmony_async_await
, just declare
your dependency in package.json with the @next distribution tag.
The published versions also use pre-release version scheme 2.0.0-alpha.x.y.z with xyz being the same as the corresponding latest release. i.e. 2.0.0-alpha.1.2.0 is essentially version 1.2.0 only with the updated dependencies.
The following specifications are implemented by oidc-provider. Note that not all features are enabled by default, check the configuration section on how to enable them.
The following drafts/experimental specifications are implemented by oidc-provider.
Updates to drafts and experimental specification versions are released as MINOR library versions.
To run and experiment with an example server, clone the oidc-provider repo and install the dependencies:
$ git clone -b next https://github.com/panva/node-oidc-provider.git oidc-provider
$ cd oidc-provider
$ npm install
$ node --harmony_async_await example
Visiting http://localhost:3000/.well-known/openid-configuration
will help you to discover how the
example is configured.
This example is also deployed and available for you to experiment with here. An example client using this provider is available here (uses openid-client).
Otherwise just install the package in your app and follow the example use. It is easy to use with express too.
$ npm install oidc-provider@next --save
Migrating from 0.11.x release? Quite a bit has changed along the way to end up with a stable and sustainable API, see the CHANGELOG for list of changes and how to change your existing 0.11 providers to 1.0
oidc-provider allows to be extended and configured in various ways to fit a variety of uses. See the available configuration.
const Provider = require('oidc-provider').Provider;
const issuer = 'http://localhost:3000';
const configuration = {
// ... see available options /docs/configuration.md
};
const clients = [ ];
const oidc = new Provider(issuer, configuration);
oidc.initialize({ clients }).then(function () {
console.log(oidc.callback); // => express/nodejs style application callback (req, res)
console.log(oidc.app); // => koa1.x application
});
Your oidc-provider instance is an event emitter, using event handlers you can hook into the various
actions and i.e. emit metrics or that react to specific triggers. In some scenarios you can even
change the defined behavior.
See the list of available emitted event names and their description.
OpenID Certified™ by Filip Skokan to the OP Basic, OP Implicit, OP Hybrid, OP Config and OP Dynamic profiles of the OpenID Connect™ protocol.
FAQs
OAuth 2.0 Authorization Server implementation for Node.js with OpenID Connect
The npm package oidc-provider receives a total of 24,839 weekly downloads. As such, oidc-provider popularity was classified as popular.
We found that oidc-provider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.