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

json-vista

v1.0.0

Published

Framework-agnostic JSON tree viewer Web Component with search, filtering, and distinct value analysis

Readme

json-vista

A framework-agnostic JSON tree viewer Web Component with interactive search, filtering, and distinct value analysis.

Features

  • Interactive tree — expand/collapse objects and arrays
  • Advanced search — string/numeric matching, key search, case sensitivity, exact or partial match
  • Compound filtering — stack multiple criteria with "and also" logic
  • Distinct value analysis — see all unique values and their counts across array items, with CSV export
  • Property management — hide/show individual properties or by pattern
  • Sorting — alphabetically sort all keys
  • Zero dependencies — works in any framework or vanilla HTML

Installation

npm install json-vista

Usage

HTML (vanilla)

<json-vista id="viewer"></json-vista>

<script type="module">
  import 'json-vista'

  const el = document.getElementById('viewer')

  el.source = { name: 'My API', url: 'https://api.example.com/data' }
  el.data = { users: [{ id: 1, name: 'Alice' }] }
</script>

React

import 'json-vista'

export default function App() {
  const ref = useRef(null)

  useEffect(() => {
    if (ref.current) {
      ref.current.data = { hello: 'world' }
    }
  }, [])

  return <json-vista ref={ref} />
}

Vue

<template>
  <json-vista ref="viewer" />
</template>

<script setup>
import 'json-vista'
import { onMounted, ref } from 'vue'

const viewer = ref(null)

onMounted(() => {
  viewer.value.data = { hello: 'world' }
})
</script>

API

Properties

| Property | Type | Description | |----------|------|-------------| | data | JsonValue | The JSON data to display | | source | Source \| null | Optional data source info (name and/or URL) |

el.data = { any: 'json value' }

el.source = {
  name: 'My API Response',
  url: 'https://api.example.com/data'
}

Theming

The component uses Shadow DOM and exposes CSS custom properties for theming:

json-vista {
  --jv-font-family: system-ui, sans-serif;
  --jv-font-size: 14px;

  /* Colors */
  --jv-color: #1e293b;
  --jv-bg: white;
  --jv-surface: #f8fafc;
  --jv-border-color: #e2e8f0;

  /* Value type colors */
  --jv-string-color: #be185d;
  --jv-number-color: #15803d;
  --jv-boolean-color: #1d4ed8;
  --jv-null-color: #64748b;

  /* Highlights */
  --jv-match-bg: #bbdefb;
  --jv-key-match-bg: #fde68a;

  /* Tree */
  --jv-indent: 20px;
  --jv-row-even-bg: #fff5f5;
  --jv-row-odd-bg: white;
}

Types

type JsonPrimitive = string | number | boolean | null
type JsonObject = { [key: string]: JsonValue }
type JsonArray = JsonValue[]
type JsonValue = JsonPrimitive | JsonObject | JsonArray

interface Source {
  name?: string
  url?: string
}

Browser Support

Works in any browser with support for Web Components (all modern browsers).

License

MIT