As we can read in picker package description :
" You can use existing connect
and express
middlewares without any issues."
But ( tell me if im wrong ) its simply not true because picker uses http.ServerResponse, while express creates wrapper ( https://github.com/expressjs/express/blob/master/lib/response.js ) and most of the express middlewares ( at least middlewares i used) makes use of methods which comes from express implementation. As express do not exposes their wrapper implementation i don’t see at the moment straight way to make sure it work and will work ( for now i could just copy express implementation). I wonder do you have any experience in using express as server router for meteor ? Probably it will need some fiber wrappers but it doesn’t seem to be hard to do.