Skip to content

s3pweb/keycloak-admin-client-cjs

Repository files navigation

Keycloak Admin Client in CommonJS

This lib exports the @keycloak/keycloak-admin-client (an ECMA Script module) as a CommonJS module, so it can be used in NestJS.

This repo is based on an idea by Manuelbaun on this issue keycloak/keycloak-nodejs-admin-client#523

The version number of this repo will follow the version number of @keycloak/keycloak-admin-client.

Install

npm i @s3pweb/keycloak-admin-client-cjs

Usage

import { KeycloakAdminClient } from '@s3pweb/keycloak-admin-client-cjs';

@Injectable()
export class KeycloakService {
    private readonly kcAdminClient: KeycloakAdminClient;

    constructor(logger: LoggingService) {
        this.log = logger.getLogger(KeycloackService.name);
        this.kcAdminClient = new KeycloakAdminClient();
    }

}

How to release

First, compile and build the project:

npm i
npm run prepublish

To release a new version, you can use the release script with the keycloak-admin-client version as an argument:

npm run release -- --release-as <NEW_VERSION>

Then push the changes and the new tag to the main branch:

git push origin main --follow-tags

About

Keycloak Admin Client compiled in CommonJS.

Topics

Resources

License

Stars

Watchers

Forks

Contributors 4

  •  
  •  
  •  
  •