Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@dekproject/keycloak
Advanced tools
Keycloak interface plugin for DEK
For more information access: https://www.keycloak.org/about.html
To install the bootstrap we recommend using the CLI
$ npm i -g @dekproject/cli
$ dek install keycloak
sample
{
"realm": "myrealm",
"auth-server-url": "http://localhost:8080/auth",
"ssl-required": "external",
"resource": "test",
"public-client": true,
"confidential-port": 0
}
Using direct
$ npm i @dekproject/scope
import express from "express";
import session from "express-session";
import cookieParser from "cookie-parser";
import bodyParser from "body-parser";
import { $, plugins, keycloak, memoryStore } from "@dekproject/scope";
(async () => {
await plugins("");
$.set("app", express());
$.app.use(bodyParser.urlencoded({ extended: false }));
$.app.use(bodyParser.json());
const PORT = process.env.PORT || 5555;
$.wait("keycloak").then(async () => {
$.app.use( cookieParser() );
$.app.use(session({
secret: 'secret',
resave: false,
saveUninitialized: true,
store: memoryStore
}));
$.app.use( keycloak.middleware( { logout: '/logout' } ));
$.app.get('/', (req, res) => { res.send("insecure content").end(); });
$.app.get('/protect', keycloak.protect(), (req, res) => {
res.send("protected content").end();
});
$.app.listen(PORT, () => {
console.log(`App listening on port ${PORT}!`);
});
});
})();
Using in the standard DEK skeleton
import session from "express-session";
import { $, app, keycloak, memoryStore } from "@dekproject/scope";
import routes from "@dekproject/routes";
$.wait(["app", "keycloak"]).then(() => {
$.app.use(session({
secret: 'secret',
resave: false,
saveUninitialized: true,
store: memoryStore
}));
$.app.use( keycloak.middleware( { logout: '/logout' } ));
$.app.get('/', (req, res) => { res.send("insecure content").end(); });
$.app.get('/protect', keycloak.protect(), (req, res) => {
res.send("protected content").end();
});
$.app.listen(PORT, () => {
console.log(`App listening on port ${PORT}!`);
});
});
FAQs
Keycloak interface plugin for DEK
The npm package @dekproject/keycloak receives a total of 1 weekly downloads. As such, @dekproject/keycloak popularity was classified as not popular.
We found that @dekproject/keycloak demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.