DEV Community

Discussion on: Why Axios Is Awesome (and how to get started with it)

Collapse
 
epsi profile image
E.R. Nurwijayadi

You can utilize fetch from WHATWG, and combine with async from ES 2107.

🕷 epsi-rns.gitlab.io/code/2020/10/25...

ES - Fetch Async/Await

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt • Edited

Also,

const data = await fetch(url).then(r => r.json())
Enter fullscreen mode Exit fullscreen mode

if you don't need to catch response.ok (i.e. statusCode >= 200 && statusCode < 300).