Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
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 13 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.