If I use Axios and Superagent to make a call to the same api one after another I get Superagent\'s response first in the console logs in both cases i.e if I call one first than
I don't really think that it is really speed thing, well sort of. I think it is that Axios is promise based and Superagent is not. They are both asynchronous but since axios waits to resolve the response it gets it appears "slower" than superagent.