Files
zitadel/packages/zitadel-client
Max Peintner 74e5b0393a add readme
2025-01-03 14:05:47 +01:00
..
2025-01-03 10:31:52 +01:00
2025-01-03 13:26:19 +01:00
2024-07-30 10:41:23 +02:00
2025-01-03 13:19:24 +01:00
2025-01-03 13:19:24 +01:00
2025-01-03 14:05:47 +01:00
2024-05-16 11:38:56 -04:00
2025-01-02 14:54:51 +01:00
2024-07-26 00:30:45 -04:00

ZITADEL Client

This package exports services and utilities to interact with ZITADEL

Installation

To install the package, use npm or yarn:

npm install @zitadel/client

or

yarn add @zitadel/client

Usage

Importing Services

You can import and use the services provided by this package to interact with ZITADEL.

import { createUserServiceClient } from "@zitadel/client";

const userService = createUserServiceClient({
  // Configuration options
});

Utilities

This package also provides various utilities to work with ZITADEL

import { timestampMs } from "@zitadel/client";

// Example usage
console.log(`${timestampMs(session.creationDate)}`);