Storion Studio

Storion Studio is a Chrome extension that gives you a visual database manager for localStorage, sessionStorage, and IndexedDB—think pgAdmin for the browser. Inspect, edit, and manage client-side data with a clean UI. No backend required.

Install the Chrome extension

Install from the Chrome Web Store (recommended):

Or load the extension from source: clone storionjs/storion-studio, open chrome://extensions/, enable Developer mode, then Load unpacked and select the folder containing manifest.json.

Playground: no-code data management

Storion Studio includes a playground that lets you work with client-side data entirely through the UI—no code required. It’s a handy tool for developers who want to:

You can prototype a schema, seed test data, and then connect your app to the same database via @storion/storion—or use the playground to inspect and tweak data that your app has already written. No scripts, no REPL: everything happens in the extension UI.

What you can do

Using Storion Studio with your app

Storion Studio uses the same data layout as the @storion/storion npm package (by default under the __LS_DB__ key in localStorage). So you can:

Example: create a database named myapp in Storion Studio, then in your app:

import { createDatabase } from '@storion/storion';

const db = await createDatabase({
  name: 'myapp',
  storage: 'localStorage'
});
// Same data is visible in both the extension and your app

Live sync (extension ↔ webapp)

For live updates from Storion Studio into your app (or the other way around), use the cross-context sync APIs:

Full details and code samples: Change subscriptions & sync.

Links