eclipsesource / eclipsesource/tabris-js

Socket.IO integration

Open
#598 24 comments 0 reactions 0 assignees View on GitHub
Dominant language
JavaScript
Stars
1.4k
Forks
171
PR merge metrics
No merged PRs in 30d

Description

Is there any way to integrate socket.io service in tabrisjs app?

For web it's really easy, all you have to do is include socket.io javascript file and that's it:

``` html

var socket = io('http://localhost');
socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data' });
});

```

how should I use socket.io.js in tabrisjs? Can I load it as module?

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.