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 🙏

© 2026 – Pkg Stats / Ryan Hefner

indexeddb-debug-bar

v1.0.5

Published

A tool for IndexedDB development (CRUD, Query Builder and more)

Readme

indexeddb-debug-bar-banner

IndexedDB Debug Bar - 🌐 Live Demo

A tool to make IndexedDB development easier Browser devtools for IndexedDB are often limited, making debugging and optimizing IndexedDB painful. IndexedDB Debug Bar bridges this gap by providing debugging capabilities right inside your app. A zero-config panel that lets you browse, query and profile IndexedDB.

indexeddb-debug-bar-banner

🚀 Quick Start

Installation

npm i indexeddb-debug-bar

Usage

import IndexedDBDebugBar from 'indexeddb-debug-bar';

new IndexedDBDebugBar('your-db-name');

Using Dexie.js Instance (Optional)

You can optionally use a Dexie.js instance to view your app’s transaction history and performance. There's also Dexie Cloud support, which lets you debug your cloud app and view activity log for sync operations.

import IndexedDBDebugBar from 'indexeddb-debug-bar';
import Dexie from "dexie";

const db = new Dexie("MyDatabase");
db.version(1).stores({
  items: "++id, name",
});
new IndexedDBDebugBar(db);

Framework Adapters

React - LIVE DEMO

import IndexedDBDebugBar from 'indexeddb-debug-bar/react';

<IndexedDBDebugBar db={'your-db-name'} options={{ ...optional }} />

Vue - LIVE DEMO

<script setup>
import IndexedDBDebugBar from 'indexeddb-debug-bar/vue';
</script>
<template>
  <IndexedDBDebugBar db='your-db-name' :options={{ ...optional }} />
</template>

CDN - LIVE DEMO

<script src="https://cdn.jsdelivr.net/npm/indexeddb-debug-bar@latest/dist/browser/indexeddb-debug-bar-browser.umd.js"></script>
<script>
    new IndexedDBDebugBar();
</script>

Dexie Cloud Demo

https://github.com/user-attachments/assets/664cd39b-2693-4157-9adb-2abc0efc857f

Features

  • CRUD Operations with Inline Editing: View, create, update, and delete entries directly from the interface.
  • GUI Query Builder: Build and test queries visually.
  • Import & Export: Import and export single tables or the entire database.
  • Query Performance Insights: Logs showing query durations to help optimize your database interactions.

🌟 Special Dexie.js Features

  • Transaction History Logs: Keep track of transactions and roll back effortlessly.
  • Dexie.js Cloud Devtools: Enhanced debugging and development experience for Dexie.js Cloud integrations.

API & Options

Component Props

| Prop | Type | Default | Description | | ------------------ | -------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------- | | db | Dexie \| string | required | Dexie instance or database name to attach the Debug Bar to | | initialLayout | Layout | { position: 'left', isCollapsed: false, isFullScreen: false, isMinimized: false } | Initial layout settings for the bar |

Layout Shape (for initialLayout)

| Option | Type | Default | Description | | -------------- | ----------------------------------------------- |------------| ---------------------------------------------------------------- | | position | 'top' | 'bottom' | 'left' | 'right' | 'bottom' | Where to dock the Debug Bar on the viewport | | isCollapsed | boolean | true | If true, only the bar’s header is shown (content is hidden) | | isFullScreen | boolean | false | If true, the bar expands to cover the entire viewport | | isMinimized | boolean | false | If true, the bar is minimized to an icon (click to restore) |

License

MIT

🤝 Contribution

Feel free to contribute to the project by creating issues or pull requests. Contributions, bug reports, and feature requests are welcome!