Managing sessions in node.js, with socket.io & without using cookies

I have an authentication method based on socket.io and I know you can save client id in a cookie or add a hash to request url.

but I'm looking for a way of implementing sessions in nodejs that doesn't rely on storing data in client side, is that even possible?

Leave a Reply

Your email address will not be published. Required fields are marked *