2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-17 19:21:29 +03:00

docs(readme): add timeout guidance to first async example (#10759)

* docs(readme): add timeout guidance to first async example

* fix: improve docs

---------

Co-authored-by: Jay <jasonsaayman@gmail.com>
This commit is contained in:
tboyila
2026-04-26 17:11:49 +05:30
committed by GitHub
parent b072ee8e0c
commit 2f89ce60ac
2 changed files with 16 additions and 0 deletions
+4
View File
@@ -480,6 +480,7 @@ axios
params: {
ID: 12345,
},
timeout: 5000, // 5 seconds — see "Handling Timeouts" below for matching error handling
})
.then(function (response) {
console.log(response);
@@ -502,6 +503,9 @@ async function getUser() {
}
```
> **Note**: Set a `timeout` in production — without one, a stalled request can hang
> indefinitely. See [Handling Timeouts](#handling-timeouts) for the matching error handling.
> **Note**: `async/await` is part of ECMAScript 2017 and is not supported in Internet
> Explorer and older browsers, so use with caution.
+12
View File
@@ -68,6 +68,18 @@ console.log(response.data);
axios provides a simple API for making requests. You can use the `axios.get` method to make a GET request, the `axios.post` method to make a POST request, and so on. You can also use the `axios.request` method to make a request with any method.
::: tip Set a timeout in production
Without a `timeout`, a stalled request can hang indefinitely. Pass one via the request config:
```js
const response = await axios.get("https://example.com/data", {
timeout: 5000, // 5 seconds
});
```
See [`timeout` in the request config](/pages/advanced/request-config#timeout) and [Error handling](/pages/advanced/error-handling) for the matching `ECONNABORTED` / `ETIMEDOUT` codes.
:::
## Next steps
Now that you've made your first request with axios, you're ready to start exploring the rest of the axios documentation. You can learn more about making requests, handling responses, and using axios in your projects. Check out the rest of the documentation to learn more.