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

ssws

v1.3.0

Published

SSWS is pronounced "swiss" and stands for `Svelte stores without Svelte`. True to its name, it's essentially just a copy of [Svelte stores](https://svelte.dev/docs#svelte_store) — plus some additional store types and a React hook for subscribing to update

Downloads

602

Readme

ssws

SSWS is pronounced "swiss" and stands for Svelte stores without Svelte. True to its name, it's essentially just a copy of Svelte stores — plus some additional store types and a React hook for subscribing to updates.

Installation

npm install ssws --save
# Or if using yarn
yarn add ssws

Usage

writable

Creates a store whose state can be updated from the outside via set and update methods.

import { writable } from 'ssws';
const counter = writable(0);

// Use `set` to replace the current store value:
counter.set(1);

// Use `update` to derive the next state from the current:
counter.update(count => count + 10);

readable

Creates a read-only store whose value cannot be updated from the outside. It has no set or update methods, only subscribe. The value can be updated within the start callback, however:

import { readable } from 'ssws';

const time = readable(null, set => {
  set(new Date());

  const interval = setInterval(() => {
    set(new Date());
  }, 1000);

  return () => clearInterval(interval);
});

immutable

Creates a writable store with limitations around how updates work. Immutable stores can only be updated via the update method. The callback passed to update receives a clone of the current state in order to derive the next. If the callback returns a value, that value is merged with the current state, allowing you to return partial state updates. If the callback returns undefined then the cloned state replaces the current state, enabling you to simply mutate the clone.

import { immutable, get } from 'ssws';
const store = immutable({ names: [] });

// Return partial updates to be shallowly merged with the current state
store.update(state => ({ places: [] });

get(store); // { names: [], places: [] }

// Mutate the cloned state directly and return nothing
store.update(state => {
  delete state.places;
  state.names.push('Bailey');
});

get(store); // { names: ['Bailey'] }

reducible

Creates a store that works as a reducer. Rather than methods to set or update state directly, it has a dispatch method to pass actions to the reducer. Reducers are immutable since reducible is a wrapper around immutable. The state that the reducer receives is a clone of the current state, like with immutable().update, so reducers can return partial state updates or mutate the cloned state and return nothing.

import { reducible } from 'ssws';

const todoStore = reducible({
  initialValue: { todos: [] },
  reducer(state, action) {
    switch (action.type) {
      case 'DELETE_TODO':
        // Return partial state updates
        return { todos: state.todos.filter(todo => todo !== action.todo) };
      case 'ADD_TODO':
        // Mutate the cloned state directly and return nothing
        state.todos.push(action.todo);
        return;
      default:
        return state;
    }
  }
});

todo.dispatch({ type: 'ADD_TODO, todo: 'Play with puppies' });

derived

Derives a store from one or more other stores. Whenever one of the dependencies updates, the callback runs and the derived store value is recalculated.

import { derived, writable, get } from 'ssws';
const dogs = writable(2);
const cats = writable(0);
const allPets = derived(
  [dogs, cats],
  ([dogCount, catCount]) => dogCount + catCount
);

get(allPets); // 2

cats.set(2);
get(allPets); // 4

get

Synchronously get the current state of a store

import { get, writable } from 'ssws';

const store = writable(0);
get(store); // 0

useStore

Access store state in React components using the useStore hook to subscribe to updates. Selectors can be either a function or a string.

import { writable } from 'ssws';
import { useStore } from 'ssws/react';

const $todos = writable({ todos: ['Play with a puppy'] });

function Todos() {
  const todos = useStore($todos, state => state.todos);
  const firstTodo = useStore($todos, 'todos.0');
}

useStore will only cause a rerender if the selected state changes, based on an equality function. By default, only referential equality is checked. So if you're using reducible or immutable and your selector returns an object or array, it will likely always fail the equality check and trigger a rerender. If your selector returns a non-primitive value, it's recommended to use multiple useStore hooks that do or pass in a custom equality function as a third argument:

import { immutable } from 'ssws';
import { useStore } from 'ssws/react';
import shallowEqual from 'shallowequal';

const $todos = immutable({ todos: [{ title: 'Play with puppies' }] });

function Todos() {
  const firstTodo = useStore($todos, 'todos.0', shallowEqual);
}