Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/allanoricil/node-red-oidc-provider
OIDC Provider for node-red
https://github.com/allanoricil/node-red-oidc-provider
node-red oidc
Last synced: 2 months ago
JSON representation
OIDC Provider for node-red
- Host: GitHub
- URL: https://github.com/allanoricil/node-red-oidc-provider
- Owner: AllanOricil
- License: mit
- Created: 2024-06-10T01:13:34.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T00:22:57.000Z (4 months ago)
- Last Synced: 2024-09-09T01:23:08.042Z (4 months ago)
- Topics: node-red, oidc
- Language: JavaScript
- Homepage:
- Size: 906 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-red-oidc-provider
With this node, you can easily set up an [OIDC (OpenID Connect) Authentication Server](https://openid.net/specs/openid-connect-core-1_0-errata2.html) in Node-Red.
### Palette view
### /.well-known/openid-configuration response
## 💻 Dev Environment Requirements
| Tool | Version |
| ---- | ------- |
| node | >= 18 |
| npm | >= 10 |## 📖 How to test your node
1. open a terminal in the root of this project
2. run `npm install`
3. run `npm run start` and wait for your browser to open## 📖 Other commands
All the following commands are set in the `scripts` section of `package.json` and were created using the `nrg` CLI.
### `npm run build`
Builds the project for production.
### `npm run build:dev`
Builds the project for development.
### `npm run start`
Starts Node-RED with nodes built for development.
### `npm run start:prod`
Starts Node-RED with nodes built for production.
### `npm run start:debug`
Starts Node-RED with nodes built for development and enables debug mode, allowing you to attach a debugger to the server side.
### `npm run watch`
Starts Node-RED with nodes built for development and enables watch mode. This will automatically rebuild your nodes, restart the flows, and refresh/open the browser whenever changes are made to files in ./src.
### `npm run watch:debug`
Starts Node-RED with nodes built for development in both watch and debug modes. This setup allows you to automatically rebuild, restart, and debug the server side with the ability to attach a debugger.