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

tahitiensis

v0.1.0

Published

### A tiny shared state and event library for ~~React~~ vanilla JS!

Downloads

3

Readme

Tahitiensis

A tiny shared state and event library for ~~React~~ vanilla JS!

Tahitiensis is a version of niue, a small shared state and event library, that works with vanilla JS. Get the same reactive state/event paradigm you know and love in projects where loading in React doesn't make sense.

Tahitiensis is a small library (less than 800 bytes before compression) that provides a simple way to manage your webapp's shared state and send events between components. I find it simplifies the architecture of webapps significantly.

Why Niue/Tahitiensis?

State

  • Easily create state that's shared across components without any hierarchy
  • Listen for changes to state and react accordingly
  • Storing application state in a single place makes it very easy to save and restore it
  • Simple API supports state patching and imperative state updates
  • Components only subscribe to the state they need

Events

  • You don't need to remember the names of events - just import the event's functions and use them

What is this name

Tahitiensis is the variety of vanilla grown in Niue.

Installation

yarn add tahitiensis

Managing shared state

To create a store (a thing to hold an object of state), use the createState function outside of a component:

import { createState } from 'tahitiensis';

const [addListener, removeListener, patchStore, getStore] = createState(
    // Initial value
    { count: 0, name: "foo" }
);

The resulting add/removeListener functions can be called in your component to run updates when the state changes:

addListener(({ name, count }) => {
    counter.innerText = count;
    nameDisplay.innerText = name;
});

addListener also accepts an optional parameter to specify which properties of the state object to "subscribe" to. Changes of these properties will trigger your listener. If you don't specify anything, the entire state object will be watched.

// Subscribe to only the `count` property
addListener({ count } => {
    counter.innerText = count;
    alert("count changed!"); // this won't run when `name` changes
}, ["count"]);

The getStore function can be used to access the store outside a state listener:

const state = getStore();
console.log(state.name);

The patchStore function can be called to update the state. getStore is especially useful in combination with patchStore:

btn.addEventListener("click", () => {
    patchStore({ count: getState().count + 1 });
});

As you can see in the example, the value passed to patchStore does not need to contain all of the properties in the state object. If you leave one out, it will not be modified.

You can also call patchStore with no parameters to use mutations to the existing state object:

const state = getStore();
state.name = "Test";
patchStore();

In addition, you can provide an array of changed keys to override Niue's default shallow comparison for detecting changes:

state.things[1].name = "Test";
patchStore(["things"]);

Events

Events work similarly to state stores. You can create an event with the createEvent function:

import { createEvent } from 'niue';

const [addListener, removeListener, emit] = createEvent<string>();

The createEvent function doesn't accept any parameters, however it does have a type parameter for the message data type.

The add/removeListener functions can be used in a component to subscribe to the event, and the emit function can be used to send the event:

btn.addEventListener("click", () => {
    emit("button clicked!");
});

addListener((message) => {
    alert(message);
});