![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
passport-keycloak-bearer
Advanced tools
HTTP Bearer authentication strategy for Passport and Keycloak.
This module lets you authenticate HTTP requests using bearer tokens with a Keycloak authority, in your Node.js applications. Bearer tokens are typically used protect API endpoints, and are often issued using OAuth 2.0.
By plugging into Passport, bearer token support can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.
$ npm install passport-keycloak-bearer
The HTTP Bearer authentication strategy authenticates users using a bearer
token. The strategy has a optional verify
callback, which accepts that
credential and calls done
providing a user. Optional info
can be passed,
typically including associated scope, which will be set by Passport at
req.authInfo
to be used by later middleware for authorization and access
control.
import KeycloakBearerStrategy from 'passport-keycloak-bearer'
...
passport.use(new KeycloakBearerStrategy(({
"realm": "master",
"host": "https://keycloak.dev.com",
"clientId": "test-test"
}),
function(token, done) {
const user = createUser(token);
return done(null, user);
}));
Use passport.authenticate()
, specifying the 'keycloak'
strategy, to
authenticate requests. Requests containing bearer verifidT do not require session
support, so the session
option can be set to false
.
For example, as route middleware in an Express application:
app.get('/profile',
passport.authenticate('keycloak', { session: false }),
function(req, res) {
res.json(req.user);
});
Submit an issue
Contribute usage docs
Simen Haugerud Granlund © 2018
FAQs
HTTP Bearer authentication strategy for Passport and Keycloak
The npm package passport-keycloak-bearer receives a total of 6,503 weekly downloads. As such, passport-keycloak-bearer popularity was classified as popular.
We found that passport-keycloak-bearer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.