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

memory-state

v1.1.13

Published

The MemoryState library provides a simple in-memory state management solution for JavaScript applications. It allows you to store and manage state data within the memory of your application.

Downloads

57

Readme

MemoryState Library

The MemoryState library provides a simple in-memory state management solution for JavaScript applications. It allows you to store and manage state data within the memory of your application.

Installation

You can install the MemoryState library via npm:

npm install memory-state

Usage

To use the MemoryState library in your JavaScript application, follow these steps:

Import the library into your code:

Client-Side

import memoryState from 'memory-state';

Server-Side

const memoryState = require('./MemoryState').default;

Set state

// Set state data
memoryState.setState('user', { name: 'John', age: 30 });

Get state

// Get state data
const user = memoryState.getState('user');
console.log(user); // Output: { name: 'John', age: 30 }

Update state

//Update State
memoryState.setState('user', { name: 'John', age: 30 });

Clear state using Key

// Clear specific state data
memoryState.clearState('user');

Clear all state

// Clear all state data
memoryState.clearAll();

Subscribe to State Changes

const unsubscribe = memoryState.subscribe('counter', (value) => {
    console.log('Counter changed:', value);
});

Limitations:

  • Data Persistence: Unlike browser storage mechanisms like localStorage or sessionStorage, the data stored in MemoryState is transient and exists only within the current execution context of the JavaScript application. It is lost when the application is closed or refreshed.

  • Memory Consumption: Storing state data in memory can consume memory resources, especially for large or complex applications. This could potentially lead to memory issues if not managed properly.

  • Single Instance: The MemoryState class is implemented as a singleton, meaning there is only one instance of the class throughout the application. While this ensures consistency in state management, it may not be suitable for scenarios where multiple independent state management instances are needed.

Pros:

  • Simplicity: The MemoryState class provides a simple and straightforward API for managing state data in-memory. It's easy to understand and use, making it suitable for small to medium-sized applications.

  • Performance: Accessing state data from memory is generally faster compared to accessing it from browser storage mechanisms like localStorage or sessionStorage. This can lead to better performance, especially for frequently accessed state data.

  • Security: Since the data stored in MemoryState is transient and exists only within the current session, it may provide better security for sensitive information compared to storing it in browser storage mechanisms that persist across sessions.

  • Predictable Behavior: Being a singleton instance, the behavior of MemoryState is predictable and consistent throughout the application. This makes it easier to reason about and debug state-related issues.

Github Repository

https://github.com/ryzxxn/memory-state