Files
huly-platform/packages/client-resources
2025-10-15 22:03:56 +04:00
..
2025-10-07 12:18:34 +07:00
2025-10-07 12:18:34 +07:00
2025-10-07 12:18:34 +07:00
2025-10-14 11:58:31 +07:00
2025-10-14 11:58:31 +07:00
2025-10-08 20:37:54 +07:00
2025-10-15 22:03:56 +04:00
2025-10-07 12:18:34 +07:00
2025-10-07 12:18:34 +07:00

Overview

Package allow to create a client to interact with running platform.

Usage

  import clientResources from '@hcengineering/client-resources'
  import core, { Client } from '@hcengineering/core'

  // ...

  const token = ... // Token obtained somehow.

  const connection: Client = await (await clientResources()).function.GetClient(token, transactorUrl)

  // Now client is usable

  // Use close, to shutdown connection.
  await connection.close()

Node JS

For NodeJS environment it is required to configure ClientSocketFactory using 'ws' package.

// We need to override default WebSocket factory with 'ws' one.
setMetadata(client.metadata.ClientSocketFactory, (url) => new WebSocket(url))

const connection: Client = await (await clientResources()).function.GetClient(token, transactorUrl)
...