Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vast

Package Overview
Dependencies
Maintainers
1
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vast

  • 1.0.42
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Vast - Simple State Utility for Libraries

Vast is a simple state utility created to use in Vest. It allows using a similar pattern to React's useState hook to store data.

Note that this is mostly intended to be used within libraries, and not as a consumer facing interface. When paired with a context propagation libraries such as context, it can have pretty powerful capabilities. See Vest for a real life example.

Installation

npm i vast

Usage

import { createState } from 'vast';

const state = createState(); // Creates a state reference.

const useColor = state.registerStateKey('blue'); // Creates a new key in the state, and gives it an initial value
// You can also pass in a function to use as the initial state

const [color, setColor] = useColor(); // ["blue", Function]
setColor('red'); // set the color to "red"

The next time you will call useColor the value of color will be "red".

You can also set a computed value by passing in a function:

const [color, setColor] = useColor(); // ["blue", Function]
setColor(currentColor => (color === 'red' ? 'blue' : 'red'));

Subscribing to changes

Getting notified for every change in the state

NOTE This will not let you know what change was made, but only that a key in the state was updated or added:

Simply add an onChange callback to your createState:

const state = createState(() => console.log('the state was updated!'));

Now on every state change, this callback will run.

Alternatively, if you need more granularity, you can subscribe to specific state keys.

Subscribing to specific state key updates

If you need to react to specific changes in your state, you can add an onUpdate callback to those state key registrations:

const useColor = state.registerStateKey(
  'red',
  (currentState, previousState) => {
    console.log(`the color changed from ${previousState} to ${currentState}!`);
  },
);

Now, whenever a state update happens in that key, your callback will run, providing the previous and changed value as well.

FAQs

Package last updated on 25 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc