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 🙏

© 2026 – Pkg Stats / Ryan Hefner

mithril-storeon

v0.0.3

Published

Connector between Mithril and Storeon

Readme

mithril-storeon

Super simple connector between Mithril and Storeon

There are 2 methods in this package - buildContainer and connect.

By default there is "global container" which can be imported as container.

You can separate containers by passing them as last argument for provider and connect functions.

Container

An abstraction that bounds store, mithril and subscribes to "@changed". Setup method after initialization.

Default flow

import m from "mithril";
import { container } from "mithril-storeon";

container.setup(store, m); // m for mithril
//  container._store = strore;
//  container._m = m;

buildContainer

Encapsulates store, can be passes as last argument for connect.

import m from "mithril";
import { buildContainer } from "mithril-storeon";

const myLovelyContainer = new buildContainer();
myLovelyContainer.setup(store, m); // m for mithril
//  myLovelyContainer._store = strore;
//  myLovelyContainer._m = m;

connect

Links state selector and actions with component.

import m from "mithril";
import createStore from "storeon";
import { container, connect } from "../mithril-storeon";

const frt = store => {
  store.on("@init", () => ({ fruit: "apple" }));
  store.on("Banana!", (store, payload) => ({ fruit: payload }));
};

const store = createStore([frt]);

container.setup(store, m);

// basic component
const _fruitComponent = () => ({
  view: vnode => {
    const { fruit, setBanana } = vnode.attrs;
    console.log(vnode.attrs);
    return m("div", { onclick: setBanana }, `My favorite fruit is  - ${fruit}`);
  }
});

// connected component
const myFavoriteFruit = connect(
  // state selector
  state => ({ fruit: state.fruit }),
  // actions
  dispatch => ({
    setBanana: () => dispatch("Banana!", "banana!")
  })
)(_fruitComponent);

export const root = () => ({
  view: vn => m("div", { class: "root" }, [m(myFavoriteFruit)])
});

document.addEventListener("DOMContentLoaded", () =>
  m.mount(document.body, root)
);

Separating stores

import m from "mithril";
import createStore from "storeon";
import { buildContainer, connect } from "../mithril-storeon";

const red = store => {
  store.on("@init", () => ({ color: "red" }));
};
const green = store => {
  store.on("@init", () => ({ color: "green" }));
};

const redStore = createStore([red]);
const greenStore = createStore([green]);

const redContainer = buildContainer();
redContainer.setup(redStore, m);
const greenContainer = buildContainer();
greenContainer.setup(greenStore, m);

// basic component
const _color = () => ({
  view: vnode => {
    const { color } = vnode.attrs;
    return m("div", `My favorite color is  - ${color}`);
  }
});

// connected component
export const redColor = connect(
  state => ({ color: state.color }),
  undefined,
  redContainer
)(_color);

export const greenColor = connect(
  state => ({ color: state.color }),
  undefined,
  greenContainer
)(_color);

export const root = () => ({
  view: vn => m("div", { class: "root" }, [m(redColor), m(greenColor)])
});