eclipsesource / eclipsesource/tabris-js
Socket.IO integration
Open
- 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
Assessment
This issue has not been assessed yet.