New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

better-convex-query

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

better-convex-query

TanStack Query-inspired React hooks for Convex with enhanced developer experience

latest
Source
npmnpm
Version
0.2.0
Version published
Weekly downloads
479
-10.8%
Maintainers
1
Weekly downloads
 
Created
Source

Better Convex Query

TanStack Query-inspired React hooks for Convex with enhanced developer experience. Leverages Convex's built-in real-time sync engine - no additional caching needed!

🎯 Why Better Convex Query?

Convex already handles all the complex stuff (caching, retry logic, real-time subscriptions), but the basic useQuery hook lacks the developer experience of TanStack Query. This library provides:

  • Full TanStack Query-style status system - status: 'loading' | 'error' | 'success'
  • Enhanced loading states - isLoading vs isFetching distinction
  • Smooth query transitions - keepPreviousData for flicker-free pagination
  • Query caching support - Optional cache provider for extended subscription lifetimes
  • Mutation callbacks - onSuccess, onError, onSettled
  • Advanced TypeScript inference - Perfect type safety
  • Zero additional complexity - Convex handles the hard stuff!

🚀 Installation

npm install better-convex-query
# or
bun add better-convex-query

📖 Usage

useQuery - TanStack Query Style

import { useQuery } from 'better-convex-query';
import { api } from '../convex/_generated/api';

function UserProfile({ userId }: { userId: string }) {
  const { 
    data, 
    error, 
    status, 
    isLoading, 
    isFetching, 
    isPending, 
    isSuccess, 
    isError
  } = useQuery(
    api.users.getUser,
    { userId },
    { enabled: !!userId }
  );

  if (isLoading) return <div>🔄 Loading...</div>;
  if (isError) return <div>❌ Error: {error?.message}</div>;
  if (!data) return null;

  return (
    <div>
      <h1>Status: {status}</h1>
      <h2>{data.name}</h2>
      <p>{data.email}</p>
    </div>
  );
}

keepPreviousData - Smooth Pagination

import { useQuery } from 'better-convex-query';
import { api } from '../convex/_generated/api';

function ProjectsList() {
  const [page, setPage] = useState(0);
  
  const { data, isPlaceholderData, isFetching } = useQuery(
    api.projects.list,
    { page },
    { keepPreviousData: true }
  );

  return (
    <div>
      {data?.projects.map(project => (
        <div key={project.id}>{project.name}</div>
      ))}
      
      <button 
        onClick={() => setPage(p => p - 1)} 
        disabled={page === 0}
      >
        Previous
      </button>
      
      <button 
        onClick={() => setPage(p => p + 1)}
        disabled={isPlaceholderData || !data?.hasMore}
      >
        Next
      </button>
      
      {isFetching && <span>Loading...</span>}
    </div>
  );
}

useMutation - Enhanced with Callbacks

import { useMutation } from 'better-convex-query';
import { api } from '../convex/_generated/api';

function UpdateUserForm({ userId }: { userId: string }) {
  const updateUser = useMutation(
    api.users.updateUser,
    {
      onSuccess: (data, variables) => {
        console.log('✅ User updated!', data);
      },
      onError: (error, variables) => {
        console.error('❌ Update failed:', error);
      },
      onSettled: (data, error, variables) => {
        console.log('📝 Update completed');
      }
    }
  );

  const handleSubmit = async (name: string) => {
    try {
      await updateUser.mutate({ userId, name });
    } catch (error) {
      // Error already handled in onError callback
    }
  };

  return (
    <form onSubmit={(e) => {
      e.preventDefault();
      handleSubmit(e.target.name.value);
    }}>
      <input name="name" type="text" disabled={updateUser.isPending} />
      <button type="submit" disabled={updateUser.isPending}>
        {updateUser.isPending ? '💾 Saving...' : '💾 Save'}
      </button>
      {updateUser.error && <span>❌ {updateUser.error.message}</span>}
    </form>
  );
}

useCacheQuery - Extended Cache Lifetime

import { useCacheQuery, ConvexQueryCacheProvider } from 'better-convex-query';
import { api } from '../convex/_generated/api';

// Wrap your app
function App() {
  return (
    <ConvexProvider client={convex}>
      <ConvexQueryCacheProvider expiration={300000}>
        <YourApp />
      </ConvexQueryCacheProvider>
    </ConvexProvider>
  );
}

// Use cached queries
function UserProfile({ userId }: { userId: string }) {
  const { data } = useCacheQuery(
    api.users.getUser,
    { userId }
  );
  
  return <div>{data?.name}</div>;
}

📊 API Reference

useQuery

function useQuery<TQuery extends FunctionReference<'query'>>(
  query: TQuery,
  args: TArgs extends Record<string, never> ? 'skip' | undefined : TArgs,
  options?: UseQueryOptions
): UseQueryResult<FunctionReturnType<TQuery>>

Options

  • enabled?: boolean - Whether to fetch data (default: true)
  • keepPreviousData?: boolean - Show previous data while new query loads (default: false)

Return

  • data: TData | undefined - The query result data
  • error: Error | undefined - Any error that occurred
  • status: 'loading' | 'error' | 'success' - TanStack-style status
  • isLoading: boolean - Initial load only
  • isFetching: boolean - Any load (including background refetches)
  • isPending: boolean - Loading or error state
  • isSuccess: boolean - Has successful data
  • isError: boolean - Has error
  • isPlaceholderData: boolean - Whether showing previous data during transition

useMutation

function useMutation<TMutation extends FunctionReference<'mutation'>>(
  mutation: TMutation,
  options?: UseMutationOptions
): UseMutationResult<FunctionReturnType<TMutation>, Error, FunctionArgs<TMutation>>

Options

  • onSuccess?: (data, variables) => void - Called on successful mutation
  • onError?: (error, variables) => void - Called on mutation error
  • onSettled?: (data, error, variables) => void - Called when mutation completes

Return

  • mutate: (variables) => Promise<TData> - Trigger the mutation
  • mutateAsync: (variables) => Promise<TData> - Same as mutate (alias)
  • isPending: boolean - Whether mutation is running
  • error: Error | undefined - Any error from last mutation
  • status: 'idle' | 'pending' | 'error' | 'success' - Mutation status
  • reset: () => void - Reset error and status

🎯 Key Features

✅ TanStack Query-Style Status System

const { status, isLoading, isFetching, isSuccess, isError } = useQuery(query, args);
// status: 'loading' | 'error' | 'success'

✅ Loading State Distinction

const { isLoading, isFetching } = useQuery(query, args);
// isLoading = initial load only
// isFetching = any load (initial + background refetch)

✅ Smooth Query Transitions (keepPreviousData)

const { data, isPlaceholderData } = useQuery(
  api.projects.list, 
  { page }, 
  { keepPreviousData: true }
);
// Shows previous data while new query loads - perfect for pagination!

✅ Extended Cache Lifetime (useCacheQuery)

// Keep query subscriptions alive for 5 minutes after unmount
const { data } = useCacheQuery(api.users.getUser, { userId });
// Reduces unnecessary re-fetches when navigating

✅ Enhanced Mutation Callbacks

const { mutate } = useMutation(mutation, {
  onSuccess: (data, variables) => { /* handle success */ },
  onError: (error, variables) => { /* handle error */ },
  onSettled: (data, error, variables) => { /* cleanup */ }
});

✅ Perfect TypeScript Inference

// Types are automatically inferred from your Convex functions
const { data } = useQuery(api.users.getUser, { userId: '123' });
// data is automatically typed as the return type of api.users.getUser

✅ Convex Compatibility

// Original Convex hooks still available
import { useConvexQuery, useConvexMutation } from 'better-convex-query';

🔧 Development

# Install dependencies
bun install

# Build the library
bun run build

# Watch mode for development
bun run dev

# Run tests
bun test

🧪 Testing

The library includes comprehensive tests. Run with:

bun test

📦 Bundle Size

Since bundle size doesn't matter for this library, we prioritize:

  • ✅ Perfect TypeScript inference
  • ✅ Comprehensive error handling
  • ✅ Full feature parity with TanStack Query patterns
  • ✅ Zero runtime overhead (just wrappers around Convex)

🚀 Why This Approach?

Convex already provides:

  • ✅ Real-time subscriptions
  • ✅ Automatic caching
  • ✅ Retry logic
  • ✅ Optimistic updates
  • ✅ Connection management

We add:

  • ✅ Better developer experience (TanStack-style API)
  • ✅ Enhanced loading states
  • ✅ Mutation callbacks
  • ✅ Perfect TypeScript support

We don't add:

  • ❌ Additional caching (Convex handles this)
  • ❌ Retry logic (Convex handles this)
  • ❌ Complex state management (Convex handles this)
  • ❌ Bundle bloat (just thin wrappers)

📄 License

MIT

Keywords

convex

FAQs

Package last updated on 12 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts