platform/plugins/client-resources
Andrey Sobolev ed5f00e842
UBERF-5418: Fix status editing (#4590)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-02-09 21:55:03 +06:00
..
config :Apply templates (#3799) 2023-10-07 16:38:21 +06:00
src UBERF-5418: Fix status editing (#4590) 2024-02-09 21:55:03 +06:00
.eslintrc.js :Apply templates (#3799) 2023-10-07 16:38:21 +06:00
.npmignore
CHANGELOG.json
CHANGELOG.md
jest.config.js :Apply templates (#3799) 2023-10-07 16:38:21 +06:00
package.json bump core (#4067) 2023-11-27 16:13:14 +07:00
readme.md
tsconfig.json Upgrade Typescript to 5.2.0 (#3810) 2023-10-08 03:14:00 +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)
...