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 🙏

© 2024 – Pkg Stats / Ryan Hefner

anvil-connect-express

v0.3.2

Published

Anvil Connect client for Express

Downloads

4

Readme

Anvil Connect lib for Express

NPM Version Build Status

Overview

This is a simple auth middleware for Express.js apps that works with the Anvil Connect authentication/authorization server (based on the OpenID Connect and OAuth 2 stack), and the anvil-connect-nodejs client.

Installation

This library assumes that you have Node.js installed (it's developed and tested on Node 4 and above), and are familiar with Express routes and middleware. To install dependencies:

npm install

Configuration

Require the project and configure the client with an issuer, a client_id, and a client_secret. For more information on registering and configuring OpenID Connect clients, see the Anvil Connect Documentation.

var AnvilConnectExpress = require('anvil-connect-express')

// configure the REST client
var oidc = new AnvilConnectExpress({
  issuer: 'https://connect.example.com',
  client_id: 'YOUR_CLIENT_ID_HERE',
  client_secret: 'YOUR_CLIENT_SECRET_HERE'
})

// Your express app can go here... for example:
var express = require('express')
var app = express()

Usage

The Anvil Connect lib for Express allows you to require authentication and authorization for any requests to any number of Express endpoints (or even the entire server).

Single endpoint
app.get('/protected', oidc.verifier(), function (req, res, next) {
  // This endpoint is authenticated and authorized
})
All endpoints
app.use(oidc.verifier())

app.get('/protected-one', function (req, res, next) {
  // This endpoint is authenticated and authorized
})

app.get('/protected-two', function (req, res, next) {
  // This endpoint is also authenticated and authorized
})
Optionally Authenticate

By default, as in the above examples, if an endpoint uses the verifier() middleware, it will throw an HTTP 401 Unauthorized An access token is required error if an access token is not included with that request.

However, for some use cases, the access token is optional, but you still want to invoke verifier() so that the token is parsed, and the credentials are added to the req object for downstream use. For example, if the resource was set to 'allow anyone to read' by its owner, a request with no token is acceptable - no error should be raised until the control flow passes to a downstream authorization component.

In this case, set the optional parameter allowNoToken to true:

var verifyOptions = { allowNoToken: true }
app.get('/maybe-protected', oidc.verifier(verifyOptions), function (req, res, next) {
  // The verifier parses the access token and adds it to `req`
  // but does not raise an error if it's missing
})
Optionally Load User Info

In addition to parsing and verifying the access token, you can ask verifier() to also load user profile details from the OpenID Provider's /userinfo endpoint:

var verifyOptions = { loadUserInfo: true }
app.get('/protected', oidc.verifier(verifyOptions), function (req, res, next) {
  // The verifier parses the access token, and also loads user profile
})

Customizations

The Anvil Connect lib for Express allows for some customization. You can authorize with a required scope or even whitelist clients you want to allow by client_id.

Authorize with a required scope
// authorize one or more endpoints with a required scope
var authorize = oidc.verifier({ scope: 'research' })
app.get('/authenticated', authorize, function (req, res, next) {
  // This endpoint is authenticated with a required scope...
})
//Authorize your entire server with a required scope
app.use(oidc.verifier({ scope: 'myapp' }))

app.get('/authenticated', function (req, res, next) {
  // This endpoint is authenticated with a required scope...
})

app.get('/authed', function (req, res, next) {
  // This endpoint is also authenticated with a required scope...
})
Restrict to specific clients
var authorize = oidc.verifier({
  clients: [
    // whitelist clients you want to allow by client_id
    '8206cab0-3712-4841-bb6c-c347799e2458',
    // ...
  ]
})

Unit Testing

To run the unit tests after installation:

npm test

License

MIT