axios
Installation
SKILL.md
Axios HTTP Client
Axios is a promise-based HTTP client for the browser and Node.js. It provides a simple API for making HTTP requests and handling responses.
Quick Start
Basic GET Request
import axios from "axios";
// Promise-based
axios
.get("/user?ID=12345")
.then((response) => console.log(response.data))
.catch((error) => console.error(error));
// Async/await
async function getUser() {
Related skills
More from slanycukr/riot-api-project
radix-ui
Build accessible, unstyled React UI components with Radix Primitives
56structlog
Structured logging for Python applications with context support and powerful processors
46uvicorn
ASGI server for Python web applications - Fast, production-ready server for async frameworks
41httpx
A next-generation HTTP client for Python with both sync and async support, perfect for modern Python applications
36apscheduler
Advanced Python Scheduler - Task scheduling and job queue system
20zod v4
TypeScript-first schema validation library with static type inference and runtime validation
14