@itstor/keycloak-admin-client-commonjs
TypeScript icon, indicating that this package has built-in type declarations

24.0.1 • Public • Published

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 https://github.com/keycloak/keycloak-nodejs-admin-client/issues/523

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

Install

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

Usage

import { KeycloakAdminClient } from "@itstor/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();
  }
}

Package Sidebar

Install

npm i @itstor/keycloak-admin-client-commonjs

Weekly Downloads

0

Version

24.0.1

License

MIT

Unpacked Size

90.1 kB

Total Files

5

Last publish

Collaborators

  • itstor