2.0.11 • Published 8 months ago

vitalchat v2.0.11

Weekly downloads
1
License
ISC
Repository
github
Last release
8 months ago

vitalchat-node

Setup

var vitalchat = require('vitalchat');
var client = new vitalchat({
    host: '',
    key: '',
    secret: ''
});

Get Devices

var devices = await client.devices();
console.log(devices);

Get Link To Enter Room

var data = await client.enter({
    device: '',
    name: '',
});
console.log(data);

Set Privacy Mode

await client.privacy({
    device: '',,
    privacy: true
});

Capture Screen

let image = await client.screen_capture({
    device: ''
});
console.log(image);

Get Last Screen Capture

var image = await client.screen({
    device: ''
});
console.log(image);

Set Custom URL

await client.custom_url({
    device: '',
    url: 'https://google.com',
});

Set Custom URL Call Window Location

await client.custom_url_window_location({
    device: '',
    left: '0',
    top: '0',
    width: '0',
    height: '0',
});

Subscribe to Events

client.on('event', (event)=>{
 console.log(event);
});
client.listen();
2.0.11

8 months ago

2.0.10

9 months ago

2.0.9

1 year ago

2.0.7

2 years ago

2.0.8

2 years ago

2.0.5

2 years ago

2.0.4

2 years ago

2.0.6

2 years ago

2.0.3

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

1.0.13

3 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago