Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Axios-SWR-Cache: Axios Based Cache Adapter with Simple SWR.

License

Notifications You must be signed in to change notification settings

aircodelabs/SimpleSWR

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SimpleSWR

SimpleSWR is a lightweight and efficient caching adapter for Axios (A simple Axios cache), implementing the Stale While Revalidate (SWR) strategy. It's designed to enhance the performance of HTTP requests by caching responses and revalidating them in the background.

Because of its simplicity, it can be used in a variety of repositories for data state management, including Vue's Pinia.

Key Features:

  • Efficient Caching: Reduce network load by caching Axios responses.
  • SWR Strategy: Automatically revalidate cached data to ensure freshness.
  • Easy Integration: Seamlessly integrates with existing Axios instances.

Installation

npm i simple-swr

Quick Start

// Example of using SimpleSWR
import simpleSWR from 'simple-swr';

// Fetch response with caching
const response = await simpleSWR.get('/api/example');
const data = response.data;

Parameters

// You can also setup cache duration
simpleSWR.setup({ cacheDuration: 1000 * 60 * 5 });

About

Axios-SWR-Cache: Axios Based Cache Adapter with Simple SWR.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
Morty Proxy This is a proxified and sanitized view of the page, visit original site.