🍋 Simple abstraction layer over any API.
- Provides a fully typed query object format
- Queries local data as well as external data (e.g., through
fetch
) - Separates resource requests from API configuration
- Provides error handlers
Everything is exported from the main entry-point through an ES6 module:
import { fetchLocal, combine } from "quetch";
import type { Query } from "quetch";
Install with the Node Package Manager:
npm install quetch
Documentation is generated here.