Skip to content

Instantly share code, notes, and snippets.

View Orabig's full-sized avatar

Benoît Chauvet Orabig

View GitHub Profile
@Orabig
Orabig / app.component.ts
Last active September 21, 2022 21:59
Centrifugo Client Service for Angular 2 #Centrifugo #Angular2 #service
// Register your service as usual. I suggest adding it to [providers] in the module definition
// Then...
...
var user = ...;
var info = ...; // Optional
var timestamp = Date.now() / 1000 | 0;
var token = <Get the token from your ws>;
this.centrifugeService.connect({
url: 'http://<centrifugoServer>:8000/connection',