Morten Nilsen

Results 67 comments of Morten Nilsen

Hi, I prefer to keep the amount of dependencies to a bare minimum, so moving to something that has 4 deps is not that great, imo. A bigger issue is...

This would be useful in conjunction with my new project https://github.com/mortenn/BrowserPicker In that regard it would be beneficial if the different containers are listed somewhere easy to read, like the...

BrowserPicker is fairly browser agnostic, so if each container was registered as a separate browser in windows, there would be no need for special handling in BrowserPicker. Other applications looking...

I can't even get it to work.. If I don't set SessionMaxAge, I just get `[Wed Jul 12 14:49:13.211467 2017] [core:debug] [pid 29224] util_cookies.c(129): [client 10.9.80.2:52781] AH00009: ap_cookie: user '(null)'...

Regarding my comment, sessions do work for me now.

In my opinion, using a standard feature of the platform is a benefit in and of itself.

As a kind of compromise, maybe methods that take a callback could return a promise if called without a callback argument?

As an interim solution, I wrote this function: ``` function toPromise(call) { return new Promise( function(resolve, reject) { call( function(err, data) { if(err) return reject(err); resolve(data); } ); } );...

I've put some relevant extracts from the bot codebase in a gist here: https://gist.github.com/mortenn/2114a16c9fbfbed34ef510d0b2792914