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

state-manager-jeph

v1.0.4

Published

StateManager is a Javascript class for reactive management of the state of an application. It allows to initialize, access, and modify the state centrally, while checking that all keys have defined values one can even remove keys during verification. Uses

Downloads

17

Readme

StateManager

StateManager is a simple JavaScript class that provides state management capabilities using a Proxy object. This class allows you to manage state in a clear and concise manner, offering methods to get and set state properties, check if all keys have values, and more.

Features

  • Proxy-based state management: Allows for dynamic state handling.
  • Get and set state properties: Easily access and update state properties.
  • Check if all keys have values: Verify if all keys in the state have non-empty values, with the option to ignore certain keys.

Installation

To include StateManager in your project, you can simply import it from your JavaScript file:

const StateManager = require('state-manager-jeph');

Usage

Creating an instance

Create an instance of StateManager by passing an initial state object to the constructor.

const initialState = { key1: 'value1', key2: 'value2' };
const stateManager = new StateManager(initialState);

Getting the state

Use the getState method to retrieve the current state.

console.log(stateManager.getState());

Setting the state

Use the setState method to update the state with new values.

const newState = { key1: 'newValue1', key3: 'value3' };
stateManager.setState(newState);
console.log(stateManager.getState());

Getting a specific property

Use the getProperty method to retrieve the value of a specific state property.

console.log(stateManager.getProperty('key1'));

Setting a specific property

Use the setProperty method to update the value of a specific state property.

stateManager.setProperty('key2', 'newValue2');
console.log(stateManager.getState());

Checking if all keys have values

Use the allKeysHaveValues method to check if all keys in the state have non-empty values. You can pass an array of keys to ignore during this check.

console.log(stateManager.allKeysHaveValues()); // true or false

const ignoreKeys = ['key3'];
console.log(stateManager.allKeysHaveValues(ignoreKeys)); // true or false

Methods

getState()

  • Description: Returns the current state.
  • Returns: Object

setState(newState)

  • Description: Updates the state with new values.
  • Parameters:
    • newState (Object): An object containing the new state values.

getProperty(prop)

  • Description: Retrieves the value of a specific state property.
  • Parameters:
    • prop (String): The property name to retrieve.
  • Returns: any

setProperty(prop, value)

  • Description: Updates the value of a specific state property.
  • Parameters:
    • prop (String): The property name to update.
    • value (any): The new value to set.

allKeysHaveValues(ignoreKeys = [])

  • Description: Checks if all keys in the state have non-empty values.
  • Parameters:
    • ignoreKeys (Array): An optional array of keys to ignore during the check.
  • Returns: Boolean

checkValues(obj, ignoreKeys)

  • Description: Helper method to recursively check if all keys in an object have non-empty values, considering nested objects.
  • Parameters:
    • obj (Object): The object to check.
    • ignoreKeys (Array): An array of keys to ignore during the check.
  • Returns: Boolean

License

This project is licensed under the MIT License.


Feel free to customize this README file further according to your specific needs or preferences.