platform/plugins/client-resources
Andrey Sobolev 8452c1f650
Fix ts-config to fix ts-server (#9019)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2025-05-22 17:22:04 +07:00
..
config :Apply templates (#3799) 2023-10-07 16:38:21 +06:00
src UBERF-10590: Suport disabled integrations (#8937) 2025-05-15 23:04:51 +07:00
.eslintrc.js :Apply templates (#3799) 2023-10-07 16:38:21 +06:00
.npmignore
CHANGELOG.json Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06:00
CHANGELOG.md Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06:00
jest.config.js :Apply templates (#3799) 2023-10-07 16:38:21 +06:00
package.json Bump version (#9057) 2025-05-21 22:14:23 +02:00
readme.md TSK-825: Client proper reconnection (#2797) 2023-03-24 10:53:12 +06:00
tsconfig.json Fix ts-config to fix ts-server (#9019) 2025-05-22 17:22:04 +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)
...