May 2 · 9 min read · I didn't plan to switch. Axios was just... there. It's what you reach for when starting a project, what tutorials use, what every senior dev recommends. I used it without thinking. Then GitHub Dependa
Join discussion
Apr 21 · 2 min read · Originally published on PEAKIQ Key Points: CancelTokens in Axios: Axios allows us to create CancelTokens using the CancelToken.source() method. These tokens can be included in requests to enable cancellation. Canceling Requests: To cancel a req...
Join discussion
Apr 4 · 5 min read · Why this matters Software supply chain attacks are landing one after another. Recent incidents involving Trivy, Checkmarx KICS, LiteLLM, Telnyx, and now Axios show the same pattern: compromise trusted
Join discussion
Apr 1 · 11 min read · If you're making HTTP requests in JavaScript, you're probably using Axios. And if you're using Axios but not using interceptors, you're writing the same code over and over again. Let me show you what
Join discussion
Apr 1 · 6 min read · In the ever-evolving landscape of software development, security remains a paramount concern for tech companies and startups. One of the most recent incidents that has sent ripples throughout the developer community is the compromise of NPM packages ...
Join discussionMar 16 · 7 min read · What happens when 5 API calls fire at the same time and your access token expires mid-flight? They all fail. All 5 get a 401. Your user sees a broken dashboard. Maybe they get logged out. Maybe half t
Join discussion
Feb 12 · 11 min read · Axios HTTP Client: Promise-Based HTTP Library Hook I still remember the day I spent six hours debugging a production issue. Our app was making API calls using XMLHttpRequest, and the callback hell was real. Nested callbacks, error handling scattered ...
Join discussionDec 31, 2025 · 3 min read · 시작하기 전에 API 요청을 위해 fetch 함수를 사용하다가 네트워크 응답으로 **“body must be object”**라는 에러를 마주치게 되었다. 예전에 axios를 사용했을 때는 몰랐는데, fetch를 사용할 때는 header 옵션을 직접 설정해줘야 한다는 것을 알게 됐고, fetch는 왜 수동으로 직렬화 해야하며, axios는 왜 직접 설정할 필요가 없는지 코드 분석을 통해 비교해보고자 글을 쓰려고 한다. 자바스크립트 객체는 네트워...
Join discussion