Socket
Book a DemoInstallSign in
Socket

@eventstore-ui/stores

Package Overview
Dependencies
Maintainers
0
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eventstore-ui/stores

Data stores for Stencil

latest
npmnpm
Version
1.1.2
Version published
Maintainers
0
Created
Source

@eventstore-ui/stores

Data stores for stencil.

@eventstore-ui/stores builds upon @stencil/store, with a few key differences:

  • Support for removing keys (and their values) from the store, allowing arbitrary key value records.

    const { state } = createStore<Record<string, string>>();
    
    state.something = 'something';
    
    delete state.something;
    
  • Addition of specialized store types, with extra helper methods:

  • Removal of ie11 support.

Install

Add to your project

yarn add @eventstore-ui/stores

Also, include the peer dependencies:

yarn add @eventstore-ui/utils

FAQs

Package last updated on 09 Aug 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