ultra-api-client
v1.0.4
Published
A lightweight and fast API client for Node.js
Maintainers
Readme
fast-api-client
A lightweight and fast HTTP client for Node.js.
Install
npm install fast-api-client
Usage
import { get, post } from "fast-api-client"
const users = await get("https://jsonplaceholder.typicode.com/users") console.log(users)
const createUser = await post("https://api.com/users", { body: { name: "John" } })
Features
- Simple API
- Retries
- Timeout
- JSON parsing
