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

zustand-yjs

v0.0.14

Published

Zustand Stores with Yjs

Readme

All Contributors

Zustand-Yjs

Disclaimer: This is a work in progress. Do not use this library in production, breaking change will happens before arriving to the first stable version.

Create zustand's store with Y.Array or Y.Doc types. We include typescript definitions.

Getting started

Install yjs, zustand and zustand-yjs.

yarn add zustand-yjs yjs zustand

Zustand-yjs manage a store of Y.Doc, allowing you to connect and disconnect easily.

import * as Y from 'yjs'
import { useYDoc } from 'zustand-yjs'

const connectDoc = (doc: Y.Doc) => {
  console.log('connect to a provider with room', doc.guid)
  return () => console.log('disconnect', doc.guid)
}

const App = () => {
  const yDoc = useYDoc('myDocGuid', connectDoc)
  return <div></div>
}

From this, you can use the docs with Y.Array, Y.Map. Other Y-types are coming.

import * as Y from 'yjs'
import { useYDoc } from 'zustand-yjs'

const connectDoc = (doc: Y.Doc) => {
  console.log('connect to a provider with room', doc.guid)
  return () => console.log('disconnect', doc.guid)
}

const App = () => {
  const yDoc = useYDoc('myDocGuid', connectDoc)
  const { data, push } = useYArray<string>(yDoc.getArray('usernames'))
  return (
    <div>
      <button onClick={() => push([`username #${data.length}`])}>
        New Username
      </button>
      <ul>
        {data.map((username, index) => (
          <li key={index}>{username}</li>
        ))}
      </ul>
    </div>
  )
}

Here you are, you have a reactive store!

API

useYDoc(guid: string, connect: (doc: Y.Doc) => () => void)

params

  • string guid: The Y.Doc#guid
  • (doc: Y.Doc) => () => void) connect: The connect function triggered on the first mount of the Y.Doc. Should return an unconnect function triggered on unmount.
    • params
      • Y.Doc doc: The mounted doc, with a Y.Doc#guid
    • returns
      • () => void : disconnect function that will be called on unmount.

returns

  • Y.Doc: The created Y.Doc

useYArray(doc: Y.Array)

params

  • Y.Array<T> doc: A Y.Array to use inside your component

returns

  • T[] data: The current data of the Y.Array used
  • forEach: See Y.Array#forEach
  • map: See Y.Array#map
  • slice: See Y.Array#slice
  • get: See Y.Array#get
  • delete: See Y.Array#delete
  • unshift: See Y.Array#unshift
  • push: See Y.Array#push
  • insert: See Y.Array#insert

useYMap(doc: Y.Array)

params

  • Y.Map<T, U extends Record<string, T>> doc: A Y.Map to use inside your component. T is the type of the record values, U is the type of the return data.

returns

  • U data: The current data of the Y.Map used
  • set: See Y.Map#set
  • get: See Y.Map#get
  • has: See Y.Map#has
  • delete: See Y.Map#delete
  • forEach: See Y.Map#forEach
  • entries: See Y.Map#entries
  • values: See Y.Map#values
  • keys: See Y.Map#keys

Run the example

  1. Clone the Repository
  2. yarn install
  3. cd example; yarn
  4. yarn start

The example doesn't mount any connector for Y.Doc (yet). So don't expect syncing. To do some sync, you can edit example/src/organizationDoc.ts and add some provider to the main document.

Special Thanks

  • Relm, svelt-yjs, the repo we started with, many thanks for publishing.
  • YJS – CRDT framework that deserve love and support
  • Zustand – A small, fast and scaleable bearbones state-management solution. Our build system is taken from there.

Roadmap

  1. Online demo
  2. Add tests

License

See the LICENSE file for license rights and limitations (MIT).

Contribution

See the CONTRIBUTE file for contribution guidelines

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!