0.0.4 • Published 10 years ago

co-primus v0.0.4

Weekly downloads
14
License
-
Repository
github
Last release
10 years ago

About

Primus.IO bindings for CompoundJS

Installataion

npm install co-primus --save

then add co-primus to config/autoload.js

API

routes

map.socket('some-event', 'controller#action');

When client emit event some-event, then action action of controller controller will gain control. Data passed to event will be available as params variable.

controller

action('some-action', function () {
    socket().emit('event', {some: 'data'}); // send 'event' to current client
    socket(anotherSessionID).emit('hello'); // send 'hello' to another user
                                            // identifyed by anotherSessionID
});

Any controller action (both socket and non-socket) can emit some event with connected client (current session client). If you want to communicate with another user need to specify session id as param of socket method.

Other socket.io API will be available later: join, broadcast, etc..

License

MIT

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago