Hacker News new | ask | show | jobs
by giancarlostoro 1372 days ago
I feel like this is overkill when you have something like OPTIONS which is very minimalist in its response. Unless I'm missing some obvious drawback with calling OPTIONS?
1 comments

Well, you double the latency for every. single. request.
CORS does not double latency for every single request. It adds the additional overhead of a separate OPTIONS request for every single request. Unless the responses are as trivial to compute/serve as OPTIONS responses are, that will be way less than a doubling in latency.
What I mean by latency is the transport latency, even assuming 0ms OPTIONS compute time, you still need twice the round trip time.