4.7.4-rc.1a63ba95.0 • Published 2 years ago

@tolgee/socketio-client v4.7.4-rc.1a63ba95.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Socket IO client for Tolgee Server

Simple client for Socket.io server embedded in Tolgee server to listen for data modification events live.

Usage

import {TranslationsClient} from "@tolgee/socketio-client";

const client = new TranslationsClient({
  authentication: {
    apiKey: 'your_cool_api_key',
  },
});

client.on('connect', () => {
  console.log('Yep! You\'re connected!');
});

client.on('translation_modified', (data) => {
  console.log(data);
})

Console output:

Yep! You\'re connected!
{
  id: 1000001001,
  text: 'Noice! This text was changed!',
  state: 'TRANSLATED',
  key: {
    id: 1000000901,
    name: 'dadsa dsa  dsaaa sd a asda dsasd sadas dsad',
    links: []
  },
  links: []
}

Authentication

You can connect to socket.io server with your apiKey

const client = new TranslationsClient({
  authentication: {
    apiKey: 'your_cool_api_key',
  },
});

or using jwtToken and projectId:

const client = new TranslationsClient({
  authentication: {
    projectId: 104,
    jwtToken: 'your cool jwtToken'
  },
});

Supported events

  • connect_error
  • connect
  • translation_created
  • translation_modified
  • translation_deleted
  • key_created
  • key_modified
  • key_deleted
  • reconnect_attempt
4.0.0

2 years ago

3.3.0-rc.0

2 years ago

3.0.0

2 years ago

2.0.0

3 years ago

1.7.6

3 years ago

1.7.3

3 years ago

1.7.2

3 years ago

1.7.1

3 years ago

1.7.0

3 years ago

1.7.4

3 years ago

1.6.1

3 years ago

1.6.0

3 years ago

1.5.1

3 years ago

1.5.0

3 years ago

1.4.0

3 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.3.0

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.0-alpha.60

3 years ago

1.0.0-alpha.59

3 years ago

1.0.0-alpha.58

3 years ago

1.0.0-alpha.57

3 years ago

1.0.0-alpha.56

3 years ago

1.0.0-alpha.54

3 years ago

1.0.0-alpha.55

3 years ago

1.0.0-alpha.53

3 years ago

1.0.0-alpha.52

3 years ago

1.0.0-alpha.51

3 years ago

1.0.0-alpha.50

3 years ago

1.0.0-alpha.49

3 years ago

1.0.0-alpha.48

3 years ago

1.0.0-alpha.47

3 years ago