How to integrate express-session with ldap js

I am currently writing a nodejs express application where users can log in, authenticate against an LDAP server and manipulate group membership. For the LDAP api, I am using ldapjs in which I create an ldap client instance which allows me to bind and perform modify operations on existing groups. Now I want to integrate this with express-js routes, so I assume that I need to be able to pass the client object I created into another route. A user logs-in (i.e. successfully binds) and proceeds to a page where he or she can assign users to one group or another (performs modify operations). What is the appropriate strategy for persisting an object from one route to another that is unique for that user's session? Would another approach consist of using express-session middleware to store my user's ldap credentials in a store (say like Redis) and then rebuild my ldapjs client on every route?

There are a couple of LDAP strategies for Passport (passport-ldap and passport-ldapauth) that may be worth looking into. There doesn't seem to be any other Express session modules for LDAP out there (at least on npm).