Cross posted to
stackoverflow.
I'll explain briefly, I'm working on an RSS aggregator with node-webkit as the backend. I was running through my list of feeds, and I've found these four errors consistently occur when I'm making lots of requests, but not when I'm making fewer (roughly less than 50 requests). The errors that are plaguing my progress are HPE_INVALID_CONSTANT, ETIMEDOUT, EAGAIN, and HPE_INVALID_HEADER_TOKEN. The first one somehow isn't an issue now, now I appear to be getting just two EAGAIN and then many ETIMEDOUT. Invalid header token appeared once, but I thought it was worthwhile to record it.
For one I don't really understand what these errors are telling me, I believe the first one is that the head of the file (or the whole file?) isn't what node.js was expecting, and as such threw an error, however after a good hour and a bit of searching, and even less luck reproducing my issue, this is all I have. Any insight on both what these errors mean, what is causing them, and what I can change in my code to fix them, would be astoundingly appreciated. Thank you very much in advance!