New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@virtuoso.dev/reactive-engine-storage

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@virtuoso.dev/reactive-engine-storage

Cell persistence in web storage and cookies for the Virtuoso reactive engine.

Source
npmnpm
Version
2.0.2
Version published
Weekly downloads
624
-22.29%
Maintainers
2
Weekly downloads
 
Created
Source

Reactive Engine Storage

@virtuoso.dev/reactive-engine-storage persists @virtuoso.dev/reactive-engine-core cells in localStorage, sessionStorage, or cookies. A storage link hydrates the cell on engine startup and writes changes back as the cell updates.

Installation

npm install @virtuoso.dev/reactive-engine-core @virtuoso.dev/reactive-engine-storage

Quick Example

import { Cell } from '@virtuoso.dev/reactive-engine-core'
import { linkCellToStorage } from '@virtuoso.dev/reactive-engine-storage'

const theme$ = Cell<'light' | 'dark'>('light')

linkCellToStorage(theme$, {
  key: 'app-theme',
  storageType: 'localStorage',
})

License

MIT

FAQs

Package last updated on 10 Jun 2026

Related posts