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

ref-central

v0.2.0

Published

A light-weighted ECMAScript module for use in both node / browser environment with reference storage and variety of fast pub / sub signaling interfaces

Downloads

11

Readme

Ref Central

A simple, 0 runtime dependencies ECMAScript module (ESM) library for lightning fast in-memory state I/O management.

ref-central is created to ease general purpose programing with unified interface, it's use case including but not limited to:

  • pub/sub with state
  • asynchronous I/O (Promise)
  • synchronous key / value map
  • mutation observer
  • data cache with TTL

Leveraging native API supporting in both Web & NodeJS environments, in conjunction of Map, Array and Proxy with function callbacks, The ref-central allow accessing ref (data) anywhere in your application with just simple I/O operations

Unlike famous frameworks, ref-central currently does not provide plugin-like system or interface, though it could be added in upcoming versions.

Installation

npm install --save ref-central

Usage

It starts with creating a ref-central instance

import refCentral from "ref-central";

// API from instance
const {
  typeId, // context ID
  getRef,
  getNextRef,
  getUnsetRef,
  setRef,
  unsetRef,
  unsetAllRefs,
  whenRef,
  whenRefUnset,
  whenNextRef,
  listenRef,
  createProxy
} = refCentral(); // Creates a ref central context

pub / sub

const removeListener = listenRef("eventName", (data) => {
  // called on `setRef()`
  console.log(data); // { eventData: "some payload" }
});

...

// `setRef()` serve as `dispatch()`
setRef("eventName", { eventData: "some payload" });

// You can even get the latest event data object by getRef
console.log(getRef("eventName")); // { eventData: "some payload" }

async I/O


// Some async process...
setTimeout(() => {
  setRef("asyncRef", { asyncResource: "async" }); 
}, 100);

// You may use handy whenRef
whenRef("asyncRef").then((ref) => {
  console.log(ref); // { asyncResource: "async" }
});

// or getRef()
getRef("asyncRef", (ref) => {
  console.log(ref); // { asyncResource: "async" }
});

getRef, setRef, unsetRef, getNextRef

console.log(getRef("customData", (ref) => {
  console.log(ref); // a
})); // null

getUnsetRef("customData", (ref) => {
  console.log(ref); // d
});

whenRefUnset("customData").then((ref) => {
  console.log(ref); // d
});

setRef("customData", "a");
getRef("customData", (ref) => {
  console.log(ref); // a
});
getNextRef("customData", (ref) => {
  console.log(ref); // b
});
setRef("customData", "b");
setRef("customData", "c");
setRef("customData", "d");
unsetRef("customData");

console.log(getRef("customData")); // null

proxy

This is a syntax sugar helper leveraging native Proxy for ones who wants to use ref-central like normal object properties

const proxy = createProxy(); // default proxy to RefTypes.Any

proxy.refName = "whatever you like";

getRef("refName"); // "whatever you like"

setRef("otherRefName", "ref-central awesome!")

console.log(proxy.otherRefName); // "ref-central awesome!"

Purpose definition

  • Zero run-time dependencies, can be used as soon as imported
  • One time callback
  • Simple as it should
  • Lightning fast I/O
  • Supports getting ref both sync and async
  • Isolated by context
  • Always return null instead of undefined when ref is not found