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 🙏

© 2024 – Pkg Stats / Ryan Hefner

zustor

v0.5.0

Published

A lightweight data-fetching library that combines Zustand with powerful query and mutation hooks.

Downloads

409

Readme

Zustor

Zustor is a lightweight and flexible data-fetching library that combines the power of Zustand for state management with efficient query capabilities. It allows you to effortlessly manage server-state, caching, and mutations by dynamically generating hooks from your API configuration.

Disclaimer

Important Notice: Zustor is provided as-is. While every effort has been made to ensure its quality and reliability, it may not cover all edge cases or meet every production requirement. Users are responsible for evaluating its suitability for their specific use case and testing thoroughly before deploying it to production environments. The maintainers are not liable for any issues, including but not limited to data loss or system failures, that arise from using this package.

Features

  • Dynamic Hook Generation: Create query and mutation hooks based on your API configuration with ease.
  • Custom Fetch Functions: Pass in your own fetch functions and customize the behavior of your queries and mutations.
  • Zustand-Based Caching: Leverage Zustand's store to cache query results and manage state.
  • Cache Invalidation & Polling: Easily manage cache invalidation and polling intervals for up-to-date data.
  • TypeScript Support: Strongly typed API for a seamless development experience.

Installation

Install Zustor along with Zustand:

bash

npm install zustand zustor

or

yarn add zustand zustor

Basic Usage

1. Initialize Zustor client

First, create a new Zustor instance and provide it with Zustand store:

import { zustorClient } from 'zustor';
import { create } from 'zustand';

// Create a Zustand store instance
const useStore = create(() => ({}));

// Initialize zustor client
export const zustor = zustorClient().initialize(store);

2. Setting Up Queries and Mutations

Then, define your queries and mutations in a configuration object:

import { zustor } from './path-to-store-file';

const apiConfig = {
  queries: {
    getUser: {
      queryFn: () => fetch('/api/user').then((res) => res.json()),
    },
    getPosts: {
      queryFn: () => fetch('/api/posts').then((res) => res.json()),
    },
  },
  mutations: {
    updateUser: {
      mutationFn: (data) =>
        fetch('/api/user', {
          method: 'PUT',
          body: JSON.stringify(data),
        }).then((res) => res.json()),
    },
  },
};

// Generate hooks based on your API configuration
const { useGetUserQuery, useGetPostsQuery, useUpdateUserMutation } =
  zustor.createApi(apiConfig);

3. Using Generated Hooks in Components

Now, use the generated hooks in your React components:

import React from 'react';
import { useGetUserQuery } from './store/api'; // Adjust import path as needed

function UserProfile() {
  const { data: user, refetch } = useGetUserQuery();

  return (
    <div>
      <h1>{user.name}</h1>
      <button onClick={refetch}>Refresh</button>
    </div>
  );
}

export default UserProfile;

4. Performing Mutations

Use the mutation hooks to update data:

import React from 'react';
import { useUpdateUserMutation } from './store/api'; // Adjust import path as needed

function UpdateUserForm() {
  const { mutate: updateUser } = useUpdateUserMutation();

  const handleSubmit = (event: React.FormEvent<HTMLFormElement>) => {
    event.preventDefault();
    const data = { name: event.currentTarget.name.value };
    updateUser(data);
  };

  return (
    <form onSubmit={handleSubmit}>
      <input name="name" placeholder="Enter new name" />
      <button type="submit">Update</button>
    </form>
  );
}

export default UpdateUserForm;

Advanced Features

Cache Invalidation & Polling

zustor provides built-in support for cache invalidation and polling intervals, allowing you to keep your data fresh.

Customizing the Cache Key

zustor allows you to customize the cache key by passing an array as the key and serializing it. Strings are placed first and sorted, followed by objects with structural sharing, similar to React Query.

API

createApi(hookConfig: ZustorConfig, store: ZustorStore)

  • hookConfig: Configuration object containing queries and mutations.
  • store: Zustand store instance to manage the state.

This function returns an object containing the dynamically generated hooks based on the provided configuration.

Query Hook

  • data: The fetched data.
  • refetch: Function to refetch the data.

Mutation Hook

  • mutate: Function to trigger the mutation.

Contributing

We welcome contributions to zustor! If you would like to contribute, please follow these steps:

  1. Fork the Repository: Create a personal fork of the repository by clicking the "Fork" button at the top right of this page.

  2. Clone Your Fork: Clone your fork to your local machine.

    git clone https://github.com/immorez/zustor.git

  3. Create a Branch: Create a new branch for your changes.

    git checkout -b my-feature-branch

  4. Make Your Changes: Implement your feature or fix your bug. Be sure to write tests for your changes if applicable.

  5. Commit Your Changes: Commit your changes with a descriptive message.

    git commit -m "Add feature X or fix issue Y"

  6. Push Your Changes: Push your changes to your fork.

    git push origin my-feature-branch

  7. Create a Pull Request: Go to the original repository and create a pull request from your branch. Provide a clear description of your changes and why they are necessary.

  8. Review and Feedback: Your pull request will be reviewed by the maintainers. Be open to feedback and ready to make any necessary revisions.

TODO

[] - 🛠️ Add support for SSR (Server-Side Rendering)

[] - 🚀 Implement caching strategies and optimizations

[] - ⏲️ Improve query and mutation polling mechanisms

[] - 📄 Enhance documentation and examples

[] - 🔧 Add more robust error handling

[] - 🧪 Write comprehensive test coverage

[] - 🔌 Implement WebSocket (Real-time) updates

[] - Documentation web page

License

This project is licensed under the MIT License.