socket.io-bundle

0.1.2 • Public • Published

Socket.IO-bundle

Build Status

This is a collection of commonly used middlewares for Socket.IO, which I wish Socket.IO was bundled with. Socket.IO-bundle is based on Express middlewares, so that you can easily integrate with Express and Connect.

var bundle = require('socket.io-bundle');
var server = require('http').Server();
var io = require('socket.io')(server);
 
io.use(bundle.cookieParser());
io.use(bundle.session({secret: 'my secret here'}));
io.use(bundle.csrf());
 
server.listen(3000);

Arguments for each middlewares are completely the same with Express's ones. You must be aware of that session middleware can’t set cookies to clients due to the behavior of Socket.I.

CSRF

Csrf tokens will be supplied to browsers via Express/Connect, and be sent to a Socket.IO server as a query parameter.

// client
var socket = io('http://localhost:3000?_csrf=' + encodeURIComponent(_csrf));

License

MIT

/socket.io-bundle/

    Package Sidebar

    Install

    npm i socket.io-bundle

    Weekly Downloads

    25

    Version

    0.1.2

    License

    none

    Last publish

    Collaborators

    • nkzawa