Justin Warkentin

Results 27 comments of Justin Warkentin

The only other standard header I can think of that might be useful in practice is the `Cookie` header. An example use case might be someone wanting to do redirection...

This is pretty ridiculous. I've been Googling and pouring over the documentation, articles and the source looking for a way to disconnect/close the connection and couldn't find anything. This is...

I ran into the same thing tonight. Except it showed the correct information for two TurboTax orders from March but was missing the price for my December TurboTax order. Whatever...

I actually disagree. I believe this module should really be refactored because it already has some other issues. For example, it doesn't handle `x-forwarded-for` properly. It only works when `x-forwarded-for`...

Ah, it looks like spaces are breaking the handling of the `x-forwarded-for` header. That line should probably be changed to: ``` js ips = (headers[proxies[i].ip] || '').split(/\s*,\s*/); ```

This is what I was just trying to figure out how to do. However, instead of prompting the user for a password each time the app starts, you can simply...