Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@dekproject/keycloak

Package Overview
Dependencies
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dekproject/keycloak

Keycloak interface plugin for DEK

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
3
Weekly downloads
 
Created
Source

@dekproject/keycloak

Keycloak interface plugin for DEK

What does this plugin do?

  • Create a basic connection with Keycloak
  • Use express-session to create session

What is Keycloak?

For more information access: https://www.keycloak.org/about.html

Instalation

To install the bootstrap we recommend using the CLI

$ npm i -g @dekproject/cli
$ dek install keycloak

Config

  • Access the administrative panel of Keycloak, create a new realm
  • Already connected to the new realm, access the clients option and create a new client
  • In the new client settings, look for the Calid Redirect URIs option, add '*', and save
  • In the Installation tab, select the Keycloak format OIDC JSON
  • create the keycloak.json file in the root directory of the application and paste the settings

sample

{
    "realm": "myrealm",
    "auth-server-url": "http://localhost:8080/auth",
    "ssl-required": "external",
    "resource": "test",
    "public-client": true,
    "confidential-port": 0
}

Usage

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}!`);
    });
});

Keywords

FAQs

Package last updated on 13 Mar 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc