1.3.5 • Published 6 years ago

express-socket.io-session v1.3.5

Weekly downloads
10,553
License
MIT
Repository
github
Last release
6 years ago

express-socket.io-session

Share a cookie-based express-session middleware with socket.io. Works with express > 4.0.0 and socket.io > 1.0.0 and won't be backward compatible.

Help me notice errors or ask me for improvements creating an issue.

Installation

$ npm install express-socket.io-session

Overview

After every socket connection, you'll have socket.handshake.session. That is the same session object req.session you get in your route middleware when your app uses express-session.

Modifying session data inside socket.io event handlers

When inside express, you normally get to modify your session variables trusting that express-session saves them for you.

Invoke this module with an option of autoSave:true in order for achieveing the same behaviour.

io.use(sharedsession(session, {
    autoSave:true
}));

Usage

var session = require("express-session")({
    secret: "my-secret",
    resave: true,
    saveUninitialized: true
});
var sharedsession = require("express-socket.io-session");

// Use express-session middleware for express
app.use(session);

// Use shared session middleware for socket.io
// setting autoSave:true
io.use(sharedsession(session, {
    autoSave:true
})); 

Sharing session data with a namespaced socket

io.of('/namespace').use(sharedsession(session, {
    autoSave: true
}));

Using your own custom cookie-parser instance

...
var cookieParser = require("cookie-parser");
...
io.use(sharedsession(session, cookieParser({
    /* your params to cookie-parser* /
}));

Example

$ npm install express socket.io express-session express-socket.io-session

index.js

var app = require('express')(),
  server  = require("http").createServer(app),
  io = require("socket.io")(server),
  session = require("express-session")({
    secret: "my-secret",
    resave: true,
    saveUninitialized: true
  }),
  sharedsession = require("express-socket.io-session");


// Attach session
app.use(session);

// Share session with io sockets

io.use(sharedsession(session));

io.on("connection", function(socket) {
    // Accept a login event with user's data
    socket.on("login", function(userdata) {
        socket.handshake.session.userdata = userdata;
        socket.handshake.session.save();
    });
    socket.on("logout", function(userdata) {
        if (socket.handshake.session.userdata) {
            delete socket.handshake.session.userdata;
            socket.handshake.session.save();
        }
    });        
});

server.listen(3000);

API

var sharedsession = require("express-socket.io-session");
io.use(sharedsession(express_session));

sharedsession( express_session, cookieparser, options)

  • express_session - This parameter is required and must be an express middleware function created with the express-session module that allows cookie-based sessions over Express.
  • cookieparser - Optional. If you don't provide en instance created by cookie-parser, this module creates one for you with defaults.
  • options
    • options.autoSave - Boolean - If true, session will be autosaved if it has been modified inside your event handler. Default: false.

Inspiration

Although there are a couple of modules that allow you to share session objects between express and socket.io, I wanted to be able to share the modules without affecting regular express-session instantiation.

These modules do the same work but with different approachs on initialization.

Changelog

See changelog.md

License

The MIT License (MIT)

Copyright (c) 2014-2015 osk <oskosk@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.