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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@haykal/core-client

v1.0.0

Published

Shared HTTP client infrastructure for Haykal frontend applications.

Readme

@haykal/core-client

Shared HTTP client infrastructure for Haykal frontend applications.

Features

  • Singleton HTTP client — single Axios instance shared across all domain packages
  • Interceptor pipeline — auth token injection, response envelope unwrap, RFC 7807 error transform, retry with exponential backoff
  • Platform-agnostic token storage — auto-detects Web (localStorage) / React Native (AsyncStorage) / Node (in-memory)
  • React Query integration — pre-configured QueryClient factory with smart retry logic
  • React Provider<HaykalProvider> wraps both client init and QueryClientProvider
  • Custom Orval mutator — bridges Orval-generated hooks with the shared client
  • Event system — observe requests, errors, and auth events for analytics/debugging
  • Typed errorsApiError class with convenience helpers (isValidationError, getFieldErrors(), etc.)

Quick Start

import { HaykalProvider } from '@haykal/core-client';

function App() {
  return (
    <HaykalProvider config={{ baseURL: '/api' }}>
      <YourApp />
    </HaykalProvider>
  );
}

Or initialize manually:

import { HaykalClient, createHaykalQueryClient } from '@haykal/core-client';

// Initialize once at app startup
const client = HaykalClient.getInstance({
  baseURL: 'https://api.example.com',
  retry: { enabled: true, maxRetries: 3 },
  onTokenRefresh: async () => {
    /* refresh logic */
  },
  onAuthFailure: () => {
    /* redirect to login */
  },
});

const queryClient = createHaykalQueryClient();

Error Handling

import { ApiError } from '@haykal/core-client';

try {
  await someApiCall();
} catch (error) {
  if (ApiError.isApiError(error)) {
    if (error.isValidationError) {
      const fields = error.getFieldErrors();
      // { email: 'must be valid', password: 'too short' }
    }
    if (error.is('RESOURCE_NOT_FOUND')) {
      // handle specific error code
    }
    console.log(error.getUserMessage()); // user-friendly message
  }
}

Token Storage

import { tokenStorage } from '@haykal/core-client';

// Tokens are managed automatically by the auth interceptor,
// but you can also access them directly:
const token = await tokenStorage.getAccessToken();

// Use a custom storage adapter (e.g., expo-secure-store):
tokenStorage.setAdapter(mySecureStorageAdapter);