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

@bartoszosn/quantum

v0.0.1

Published

Yet another react state management library.

Downloads

2

Readme

quantum

Yet another react state management library. It is atomic, reactive, and simple.

It is atomic state management in the vein of Jotai or React Recoil. Only difference is that it takes different approach to creating an atom.

Philosophy

The core of this library is only three items:

  • QuantumRoot - Component which wraps your app and provides context for atoms. it is similar to RecoilRoot or Provider from react-redux.
  • useAtomValue - Hook to read value of an atom.
  • atom - Function to create atom.

The difference between this library and jotai or recoil is that atom is created in a way inspired by an rxjs observable or a promise.

const myAtom = atom((observer) => {
	useEffect(() => {
		let value = 0;
		const intervalId = setInterval(() => observer.set(value++), 1000);
		return () => clearInterval(intervalId);
	}, []);
})

To the atom function you pass a function which takes an observer as an argument. This observer has a single method set which you can call to set the value of the atom.

This callback is executed for the first time when you subscribe to the atom for the first time. Then, End of its lifecycle (so, for example, when a callback returned from useEffect is called) is when all the subscribers are unsubscribed.

It can be called multiple times, each time an atom is subscribed to when it was not subscribed right before.

Inside the function you can use any hooks you want. You can use it the same way you would use a normal react hook. The hook is executed at the level of QuantumRoot component.

All the other features are built on top of this simple concept.

If something cannot be done with this simple concept, then the core API should be made more flexible to allow it.

Installation

npm install @quantum/quantum

or

yarn add @quantum/quantum

That's it. You are ready to go.

Documentation

Roadmap

  • [ ] Create more utility functions to work with atoms, such as:
    • [ ] debounceAtom
    • [ ] mapAtoms
    • [ ] suspenceAtom
    • [ ] persistantAtom
  • [ ] Add examples.
  • [ ] Add performance tests.
  • [ ] Add a way to inspect atoms in devtools.

Contributing

Feel free to contribute to this project. Just create a pull request.

License

MIT