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

@tq-bit/node-red-auth-azure-oidc

v1.0.1

Published

An Azure Entra ID (MS Active Directory) plugin for Node-Red

Downloads

10

Readme

MS Entra ID node-red authentication

MS Entra ID authentication plugin for Node-Red.

This module is a wrapper for the passport-azure-ad passport module with some default values and type completion to quickly get started.

Installation

In your Node-Red instance (usually ~/.node-red), install this module with the following command:

npm install @tq-bit/node-red-auth-azure-oidc

Create an app in MS Entra ID

  1. Go to Azure Portal
  2. Open Entra ID
  3. Go to 'Enterprise Applications'
  4. Click on 'New application'
  5. Click on 'Create your own application'
  6. Select 'Register an application to integrate with Microsoft Entra ID'
  7. Fill out account details (make sure to add a Redirect URL that's equal to the one in the Node-Red instance)
  8. Jot down the application ID (client-id) and secret (client-secret)

Configuration

In the settings.js file, add the following:

adminAuth: require('node-red-auth-azure-oidc')({
	tenant: '<subscription-id> or <tenant-id>',
	users: [
		{
			username: 'tq-bit',
			permissions: '*', // or 'read'
		},
	],
	clientID: '<client-id> for this application',
	clientSecret: '<client-secret> for this application',
	redirectUrl: 'http://localhost:1880/auth/strategy/callback', // or the URL of whereever you have deployed Node-Red
	responseType: 'code', // or  'id_token', 'id_token code', 'code id_token'
	allowHttpForRedirectUrl: true,
  // Further properties are available using code completion intellisense (CTRL+Space)
}),

Further config

Instead of using this module's API, you can use the passport-azure-ad module options directly. Please refer to their documentation for more information.

Implement this package yourself

In your settings.js file, you can replace this module with your own implementation. Start here:

adminAuth: {
	type: 'strategy',
  users: [
		{
			username: 'tq-bit',
			permissions: '*', // or 'read'
		},
	],
	strategy: {
		name: 'azuread-openidconnect',
		label: 'Sign in with Azure',
		icon: 'fa-windows',
		strategy: require('passport-azure-ad').OIDCStrategy,
		options: {
			clientID: "<client-id>",
			redirectUrl: "http://localhost:1880/auth/strategy/callback",
			identityMetadata: 'https://login.microsoftonline.com/<subscription-id>/v2.0/.well-known/openid-configuration',
			responseType: 'code',
			responseMode: 'form_post',
			allowHttpForRedirectUrl: true,
			clientSecret: '<client-secret>'
			callbackMethod: 'POST'
			scope: ['openid', 'email', 'profile'],
			verify: (issuer, secret, profile, done) => {
				// Username for node-red must be set to displayName in Azure
				profile.username = profile.displayName;
				done(null, profile);
			},
		},
	},
};