socket_io

Creator: coderz1093

Last updated:

Add to Cart

Description:

socket io

socket.io-dart #
Port of awesome JavaScript Node.js library - Socket.io v2.0.1 - in Dart
Usage #
import 'package:socket_io/socket_io.dart';

main() {
var io = new Server();
var nsp = io.of('/some');
nsp.on('connection', (client) {
print('connection /some');
client.on('msg', (data) {
print('data from /some => $data');
client.emit('fromServer', "ok 2");
});
});
io.on('connection', (client) {
print('connection default namespace');
client.on('msg', (data) {
print('data from default => $data');
client.emit('fromServer', "ok");
});
});
io.listen(3000);
}
copied to clipboard
// JS client
var socket = io('http://localhost:3000');
socket.on('connect', function(){console.log('connect')});
socket.on('event', function(data){console.log(data)});
socket.on('disconnect', function(){console.log('disconnect')});
socket.on('fromServer', function(e){console.log(e)});
copied to clipboard
// Dart client
import 'package:socket_io_client/socket_io_client.dart' as IO;

IO.Socket socket = IO.io('http://localhost:3000');
socket.on('connect', (_) {
print('connect');
socket.emit('msg', 'test');
});
socket.on('event', (data) => print(data));
socket.on('disconnect', (_) => print('disconnect'));
socket.on('fromServer', (_) => print(_));
copied to clipboard
Multiplexing support #
Same as Socket.IO, this project allows you to create several Namespaces, which will act as separate communication channels but will share the same underlying connection.
Room support #
Within each Namespace, you can define arbitrary channels, called Rooms, that sockets can join and leave. You can then broadcast to any given room, reaching every socket that has joined it.
Transports support #
Refers to engine.io

polling: XHR / JSONP polling transport.
websocket: WebSocket transport.

Adapters support #

Default socket.io in-memory adapter class. Refers to socket.io-adapter

Notes to Contributors #
Fork socket.io-dart #
If you'd like to contribute back to the core, you can fork this repository and send us a pull request, when it is ready.
If you are new to Git or GitHub, please read this guide first.
Who Uses #

Quire - a simple, collaborative, multi-level task management tool.
KEIKAI - a web spreadsheet for Big Data.

Socket.io Dart Client #

socket.io-client-dart

Contributors #

Thanks @felangel for https://github.com/rikulo/socket.io-dart/issues/7
Thanks @ThinkDigitalSoftware for https://github.com/rikulo/socket.io-dart/pull/15
Thanks @guilhermecaldas for https://github.com/rikulo/socket.io-dart/pull/16
Thanks @jodinathan for https://github.com/rikulo/socket.io-dart/pull/17
Thanks @jodinathan for https://github.com/rikulo/socket.io-dart/pull/18
Thanks @nicobritos for https://github.com/rikulo/socket.io-dart/pull/46
Thanks @nicobritos for https://github.com/rikulo/socket.io-dart/pull/47

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.