platform/plugins/client-resources
Denis Bunakalya 49bf38cf0a
Merge branch 'main' of github.com:hcengineering/anticrm into show-filter-items-current-space
Signed-off-by: Denis Bunakalya <denis.bunakalya@xored.com>
2023-01-18 11:53:37 +04:00
..
config Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06:00
src Merge branch 'main' of github.com:hcengineering/anticrm into show-filter-items-current-space 2023-01-18 11:53:37 +04:00
.eslintrc.js Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06:00
.npmignore initial client-resources implementation 2021-08-07 06:30:10 +02:00
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
package.json Bump versions (#2494) 2023-01-09 12:35:54 +07:00
readme.md Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06:00
tsconfig.json Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06: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 enviornment 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)
...