Socket
Socket
Sign inDemoInstall

socket.io-express-session

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

socket.io-express-session

Use express-session as socket.io middleware.


Version published
Weekly downloads
431
increased by9.11%
Maintainers
1
Weekly downloads
 
Created
Source

socket.io-express-session

Use express-session as socket.io middleware.

Setup

All you have to do is adding a middleware like you would in your express app.

var ios = require('socket.io-express-session');
var session = ... configured express-session instance
...

io.use(ios(session));
...
io.on('connection', function(socket){
  console.log(socket.handshake.session);
});

EXAMPLE: An example app is available under the the example folder. Run the npm run example command to start it.

IMPORTANT: You must pass the same session configuration into express and socket app (the same store, same secret)!

IMPORTANT: Do not use the default MemoryStore session store. It is not designed for a production environment. If you do use the default store then you should pass the same session instance to express and socket app (data are saved in memory).

Keywords

FAQs

Package last updated on 29 Sep 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc