Rob Wu
Rob Wu
> Sorry, I meant setting it up to serve from a URL that included a pathname, e.g. https://example.com/cors-anywhere/ > > The base proxy URL is always set to only include...
Is the network connection and DNS correctly configured on your server?
Depends on your Operating system. If this issue is caused by an incorrect DNS/network/firewall config, then the problem has nothing to do with this library. Any (Node.is) application would experience...
Look in `/etc/resolv.conf`, and ensure that nameservers are being specified. E.g. using Google's DNS servers: ``` nameserver 8.8.8.8 nameserver 8.8.4.4 ```
From one curl command, you cannot deduce anything. Either server could have been lucky to have encountered an intermediate proxy that cached the result, thus provided faster access to the...
Odd. I'd expect US-request to be faster since the apps are created in the US region by default (https://devcenter.heroku.com/articles/regions#select-a-region). I did not see anything special on `tracepath` (I quickly hit...
Google App Engine does not support Node.js, AFAIK. See https://github.com/joyent/node/wiki/Node-Hosting for a list of free Node.js hosting service providers. You could also try out Heroku (everythng you need is already...
@svnpenn I don't think that there's anything wrong with US + Heroku. Do you have ApacheBench? If so, try to profile a little bit more. `-n` specifies the number of...
Could you increase your sample size? E.g. to 1000 (possibly without `$i`): ``` ab -n 1000 -c20 http://cors-anywhere.herokuapp.com/ ``` Or at least 100 with `$i`: ``` ab -n 100 -c3...
Can you share a link and/or attach a screenshot of the problem that you're trying to solve?