session
session copied to clipboard
Using with different framework
Hi, i was wondering if this is able to be used with a different web server frramework other than express?, im trying to use passport Js with the marblejs framework and want to use sessions and i cant find a tutorial to use passport js with sessions without the express-session package
Hey @DBankx this module was originally built to work with connect, and I think would also work with koa. In general this is build to work with a middleware pattern. That mean that this module generates a function with the signature
(request, response, next)
I don't know much about marble, but it seems to use the middleware pattern. Have you tried initializing this module normally, and putting it in the marble middleware array?