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

grafana-dashboard-normalizer

v0.1.0

Published

Canonicalize Grafana dashboard JSON for clean git diffs. Strip volatile fields, renumber panels, sort keys. Zero runtime dependencies, CLI + library.

Downloads

14

Readme

grafana-dashboard-normalizer

Canonicalize Grafana dashboard JSON for clean git diffs. Strips volatile fields (id, version, iteration, templating current), renumbers panels sequentially, sorts tags and all object keys. Zero runtime dependencies - ships a CLI (gdnorm) and a small library API.

Problem

Grafana dashboard JSON contains volatile fields (panel ids, iteration counters, runtime-selected templating values) and unsorted keys. Committing raw exports produces noisy diffs. gdnorm normalizes the JSON so only meaningful changes show up in git.

Install

npm install -g grafana-dashboard-normalizer

or run via npx:

npx grafana-dashboard-normalizer dashboard.json

CLI

gdnorm [files...] [options]
  • No files: read stdin, write normalized JSON to stdout.
  • Files (no flags): print normalized JSON of each file to stdout (concatenated).
  • --write: rewrite files in place when changed; prints normalized: <file>.
  • --check: CI mode; lists files that would change, exits 1 if any.
  • --keep : remove names from the default stripTop (id, version, iteration).
  • --strip : add names to stripTop.
  • --no-renumber: keep original panel ids.
  • --no-sort-tags: keep original tag order.
  • --keep-variable-current: keep templating variable current values.
  • --help, --version.

Examples:

gdnorm dashboards/*.json --write
gdnorm --check dashboards/
cat dash.json | gdnorm > normalized.json
gdnorm --keep id,version dash.json

Exit codes: 0 ok, 1 check found differences, 2 usage/IO/parse error.

Library API

import { normalizeDashboard } from "grafana-dashboard-normalizer";

const result = normalizeDashboard(dashboardJson, {
  stripTop: ["id", "version", "iteration"],
  stripVariableCurrent: true,
  renumberPanels: true,
  sortTags: true,
});
// result.dashboard - normalized object
// result.json      - canonical JSON string (2-space indent, LF, trailing newline)
// result.changed   - whether normalization modified the canonical form

Options:

  • stripTop (default ["id","version","iteration"]): top-level fields to remove.
  • stripVariableCurrent (default true): remove current from templating.list entries.
  • renumberPanels (default true): reassign panel ids 1..n in traversal order (rows included).
  • sortTags (default true): sort the top-level tags array lexicographically.

Normalization is deterministic and idempotent: normalize(normalize(x)) === normalize(x). Input that is not a plain object throws a TypeError.

License

MIT