New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@labshare/services-auth

Package Overview
Dependencies
Maintainers
4
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@labshare/services-auth

LabShare Services plugin for resource scope-based HTTP route and socket authorization

1.18.130
Source
npm
Version published
Weekly downloads
223
312.96%
Maintainers
4
Weekly downloads
 
Created
Source

Services Auth

@labshare/services-auth is a plugin that integrates with @labshare/services to provide Socket.io and Express.js API Resource Scope authorization with RS256 JWT validation.

Install

npm i @labshare/services-auth --save

Options

  • authUrl (String) - The base URL for a remote LabShare Auth service. Example: https://a.labshare.org/_api
  • organization (String) - The LabShare Auth organization ID the API service is registered to.
  • audience (String) - The API service's identifier registered to the LabShare Auth service. This is used for JWT audience validation.
  • getUser (Function) - An optional, custom function for obtaining the user data. The signature is ({authToken: string, refreshToken: string}, callback: (error: Error, user) => void): void.
  • issuer (String) - Optional value for validating the JWT issuer (the iss claim).
  • secretProvider (Function) - An optional, custom function for obtaining the signing certificate for RS256. The signature is (req, header: {alg: string}, payload, cb: (error: Error, signingCert: string) => void): void.

Usage

This example demonstrates scope-based authorization for an HTTP API module using @labshare/services to load the route definition. With the configuration below, only JWTs containing an audience of https://my.api.identifier/resource and a read:users scope would be allowed to access the API route. Additionally, the JWT would be validated using the JSON Web Key Set of the specified organization.

// api/users.js

module.exports = {
    routes: [
        {
            path: '/users',
            httpMethod: 'GET',
            middleware: getUsers,
            scope: [
                'read:users'
            ]
        }
    ]
}
// lib/index.js

const {Services} = require('@labshare/services'),
    servicesAuth = require('@labshare/services-auth');

const services = new Services(/* options */);

// Adds scope-based route authentication and authorization to LabShare Service routes and sockets
services.config(servicesAuth({
    authUrl: 'https://ls.auth.io/_api',
    audience: 'https://my.api.identifier/resource',
    issuer: 'LabShare Auth',
    organization: 'my-org'
}));

services.start();

Development

  • Install Node.js 6+
  • Run npm install in the root directory of services-auth.

Tests

npm test

Keywords

LabShare

FAQs

Package last updated on 07 Feb 2018

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