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

react-usectx

v1.2.5

Published

Custom React globally accessible context hook

Readme

React-Context

Custom React globally accessible context hook

Installation

npm i react-usectx --save

Add it to your project

import {useGlobalState} from "react-usectx";

Usage

// get both current state and set function
const [myState, setMyState] = useGlobalState("stateName");


// use with undo and redo methods
const [myState, setMyState, undo, redo] = useGlobalState("stateName");

Undo and redo functionality is essential for any interface that allows users to make edits. It enhances usability by giving users confidence that their changes aren’t permanent and can be easily adjusted.

By implementing simple Undo and Redo actions—typically as two buttons—you allow users to navigate backward to a previous state or forward to a more recent state of the component.

Other methods:

getGlobalState

// get current state only

import { getGlobalState } from "react-usectx";

const myState = getGlobalState("stateName");

updateGlobalState

// set function  only

import { updateGlobalState } from "react-usectx";

const setMyState = updateGlobalState("stateName");

setMyState({ name: "Rick Ross" });

useGlobalReducer

import { useGlobalReducer } from "react-usectx";

const fullName = useGlobalReducer("stateName", (data) => {
  return `${data.firstName} ${data.lastName}`;
});

Params

stateName

const myContextID = "MyUniqueIdentifier";

useGlobalState(myContextID);

The stateName serves as a unique identifier for a shared state object. Internally, the state manager maintains a list of state entries, each associated with a distinct stateName.

When any of the provided functions—useGlobalState, updateGlobalState, or getGlobalState—are invoked, the state manager checks whether a state object with the specified stateName already exists. If it does not, a new state entry is automatically created and initialized.

This mechanism enables global state sharing across components. For example, calling getGlobalState("example-1") in one component will return the same state reference when called with "example-1" in any other component within the same document. This allows for seamless state synchronization across different parts of your application without the need for explicit context providers.

initialState

useGlobalState(myContextID, { name: "John" });

The value you want the state to be initially. It can be a value of any type.

API Methods

const api = stateApi(myContextID);

Manualy control the flow of the data.

subscribe

api.subscribe(data => {
  console.log(data)
});

Subscribe for changes

unsubscribe

const subscription = data => {
  console.log(data)
}
api.unsubscribe(subscription);

unsubscribe from specific subscription

commit

api.commit({
  my: "data"
});

Sets data, and triggers all subscriptions and react hooks.

setState

api.setState({
  my: "data"
});

Sets data 'silently', without triggering anything.

undo

api.undo();

Sets state to previous (if any), and triggers all subscriptions and react hooks.

redo

api.redo();

Sets data to next state if undo was called previously, and triggers all subscriptions and react hooks.

Example

function Page() {
  const [title, setTitle] = useGlobalState("title");

  return (
    <div className="wrapper">
      <form>
        <label htmlFor="text">Enter text</label>
        <input
          type="text"
          id="text"
          onChange={(e) => setTitle(e.target.value)}
        />
      </form>
      <Title></Title>
      <p>{title}</p>
    </div>
  );
}

function Title() {
  const title: string = getGlobalState("title");
  return (
    <h1>
      Component: <br />
      <strong>{title}</strong>
    </h1>
  );
}

Example with reducer

function Page() {
  const [title, setTitle] = useGlobalState("title");

  return (
    <div className="wrapper">
      <form>
        <label htmlFor="text">Enter text</label>
        <input
          type="text"
          id="text"
          onChange={(e) => setTitle(e.target.value)}
        />
      </form>
      <Title></Title>
      <p>{title}</p>
    </div>
  );
}

function Title() {
  const reducedTitle: string = useGlobalReducer(
    "title",
    (title) => `Title is: ${title.toUpperCase()}`
  );
  return (
    <h1>
      <strong>{reducedTitle}</strong>
    </h1>
  );
}