Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
multicolour-hapi-oauth
Advanced tools
OAuth auth plugin for Multicolour Servers, is a wrapper around the Bell library.
bell ships with built-in support for authentication using Facebook, GitHub, Google, Instagram, LinkedIn, Twitter, Yahoo, Foursquare, VK, ArcGIS Online, Windows Live, Nest, Phabricator, BitBucket, Dropbox, Reddit and Tumblr. It also supports any compliant OAuth 1.0a and OAuth 2.0 based login services with a simple configuration object.
To use:
"use strict"
// Configure our service.
const my_service = require("multicolour")
// Configure the service core and scan for content.
.new_from_config_file_path("./config.js")
.scan()
// Register the server plugin.
.use(require("multicolour-server-hapi"))
// Register the auth plugin to the server.
.get("server")
.use(require("multicolour-auth-oauth"))
// Start the service.
my_service.start()
Your config is where you will enter your providers, you must be sure that you have created the necessary apps for relevant services before you will be able to authenticate with them.
If, for example you wanted to have a Login With Twitter, Facebook & Github your config might look something like:
{
...
auth: {
password: "YOUR SECURE COOKIE PASSWORD HERE",
redirect: "http://localhost:1811/user-logged-in",
providers: [
{
provider: "twitter",
clientId: "YOUR CLIENT ID HERE",
clientSecret: "YOUR CLIENT SECRET HERE"
},
{
provider: "github",
clientId: "YOUR CLIENT ID HERE",
clientSecret: "YOUR CLIENT SECRET HERE"
},
{
provider: "facebook",
clientId: "YOUR CLIENT ID HERE",
clientSecret: "YOUR CLIENT SECRET HERE"
}
]
},
...
}
This will create several new endpoints which are visible on your multicolour
docs page under the session
endpoint.
By default, when you auth with a provider you'll be redirected to the resulting session model, this is unlikely to be what you wanted so you configure this by setting the redirect
property in the auth config.
FAQs
OAuth auth plugin for Multicolour HapiJS Servers
The npm package multicolour-hapi-oauth receives a total of 2 weekly downloads. As such, multicolour-hapi-oauth popularity was classified as not popular.
We found that multicolour-hapi-oauth demonstrated a not healthy version release cadence and project activity because the last version was released 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.