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

react-usethis

v0.1.3213

Published

Redux state management utilty

Downloads

50

Readme

React-UseThis

Overview

react-usethis is a simplified and ready-to-use Redux state management tool, designed for better flow and easy integration.

Installation

To install react-usethis, use the following npm command:

npm i react-usethis

Setup

Wrap your application with ThisProvider to provide react-usethis to your app:

import { ThisProvider } from "react-usethis/thisProvider";

<ThisProvider>
  <App />
</ThisProvider>

Now react-usethis is ready to use inside App.

Creating a New State

To create a new state, follow these steps:

  1. Import useThis and set from react-usethis:

    import { useThis, set } from "react-usethis";

  2. In App.jsx, create a new state:

    let MyState = useThis(STATE_NAME, INITIAL_OBJECT);

useThis will return an object with the following properties:

  • This
  • get
  • upsert
  • append

Properties

  • This: Returns the retrieved value from the state.
  • get(): Executes and fetches the state.
  • upsert({my_key: set(new_value)}): Updates my_key with new_value.
  • update(new_obj): Replaces state data with new_obj.

Example Usage

import { useThis, set } from "react-usethis";

function App() {
  let MyState = useThis("myState", { count: 0 });

  const increment = () => {
    MyState.upsert({ count: set(MyState.This.count + 1) });
  };

  return (
    <div>
      <p>Count: {MyState.This.count}</p>
      <button onClick={increment}>Increment</button>
    </div>
  );
}

Notes

useThis() can also be used outside of ThisContext, but when called outside, useThis() will return only get(), upsert(), and update(), not This.

set() Usage in upsert

The set() function is used to define the updating value. It can also take an index for updating specific array elements.

Example

let a = useThis("my_state", { data: [1, 2, 3, 4] });

a.upsert({ data: set(20, 1) }); // This will update the value at index 1 from 2 to 20.

This will update the value at index 1 of data from 2 to 20.

For further information on the upsert function, read js-upsert.

Conclusion

react-usethis is a powerful yet simple tool for managing state in your React application. By wrapping your application with ThisProvider and utilizing the useThis hook, you can easily manage and update your application's state with minimal effort.