npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@umituz/react-native-cache

v2.1.0

Published

In-memory caching utilities with TTL, eviction strategies, pattern-based invalidation, and cache management for React Native

Readme

@umituz/react-native-cache

TanStack Query cache management and configuration for React Native apps with centralized cache strategies.

Features

  • 🎯 Centralized Cache Configuration: Single source of truth for all cache settings
  • ⏱️ Time Constants: Readable time constants (SECOND, MINUTE, HOUR, DAY, WEEK)
  • 📊 Cache Categories: Master data, user data, and real-time data cache presets
  • 🔄 QueryClient Singleton: Global QueryClient instance for cache invalidation
  • 🛡️ Request Deduplication: Middleware to prevent duplicate network requests
  • 🎨 Environment Config: Different cache settings for development and production

Installation

npm install @umituz/react-native-cache

Peer Dependencies

This package requires the following peer dependencies:

npm install @tanstack/react-query

Usage

Basic Setup

import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { DEFAULT_QUERY_CONFIG, setQueryClient } from '@umituz/react-native-cache';

// Create QueryClient with default config
const queryClient = new QueryClient(DEFAULT_QUERY_CONFIG);

// Set global instance for use outside React components
setQueryClient(queryClient);

// Wrap your app
export default function App() {
  return (
    <QueryClientProvider client={queryClient}>
      {/* Your app */}
    </QueryClientProvider>
  );
}

Using Cache Presets

import { useQuery } from '@tanstack/react-query';
import { MASTER_DATA_CACHE, USER_DATA_CACHE } from '@umituz/react-native-cache';

// Master data (rarely changes)
const { data: meditationTypes } = useQuery({
  queryKey: ['meditation-types'],
  queryFn: fetchMeditationTypes,
  ...MASTER_DATA_CACHE.MEDITATION_TYPES,
});

// User data (moderate changes)
const { data: sessions } = useQuery({
  queryKey: ['sessions'],
  queryFn: fetchSessions,
  ...USER_DATA_CACHE.SESSIONS,
});

Using QueryClient Outside React Components

import { getQueryClient } from '@umituz/react-native-cache';

// In a service or utility function
async function invalidateSessions() {
  const queryClient = getQueryClient();
  await queryClient.invalidateQueries({ queryKey: ['sessions'] });
}

Request Deduplication

import { requestDeduplicationMiddleware } from '@umituz/react-native-cache';

// Prevent duplicate requests
const data = await requestDeduplicationMiddleware.deduplicate(
  '/api/users',
  'GET',
  () => fetch('/api/users').then(res => res.json())
);

Time Constants

import { TIME } from '@umituz/react-native-cache';

const customCache = {
  staleTime: TIME.MINUTE * 10, // 10 minutes
  gcTime: TIME.HOUR * 2, // 2 hours
};

API Reference

Cache Configuration

  • TIME: Time constants (SECOND, MINUTE, HOUR, DAY, WEEK)
  • MASTER_DATA_CACHE: Cache settings for rarely changing data
  • USER_DATA_CACHE: Cache settings for user-specific data
  • REALTIME_DATA_CACHE: Cache settings for real-time data
  • DEFAULT_QUERY_CONFIG: Default QueryClient configuration
  • ENV_CACHE_CONFIG: Environment-specific cache settings

QueryClient Singleton

  • getQueryClient(): Get global QueryClient instance
  • setQueryClient(client): Set global QueryClient instance
  • hasQueryClient(): Check if QueryClient is initialized

Middleware

  • requestDeduplicationMiddleware: Request deduplication middleware

Cache Strategy Guide

| Data Type | Update Frequency | Cache Preset | Example | |--------------------|------------------|--------------|-----------------------| | Master Data | Rarely | MASTER_DATA_CACHE | Meditation types | | User Data | Moderate | USER_DATA_CACHE | Sessions, statistics | | Real-time Data | Frequent | REALTIME_DATA_CACHE | Live updates |

License

MIT

Author

Ümit UZ [email protected]