Problem Statement
Which library supports setting request timeouts directly?
Explanation
Axios supports request timeouts through the timeout configuration option.
Fetch does not have native timeout handling; developers must use AbortController instead.
Code Solution
SolutionRead Only
axios.get(url, { timeout: 5000 });