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

@nodomx/devtools

v0.2.6

Published

Browser devtools bridge and overlay for NodomX applications.

Readme

@nodomx/devtools

@nodomx/devtools is the official runtime debugging panel for NodomX.

Features

  • Discover mounted NodomX apps automatically
  • Browse the module tree and inspect the selected module
  • Auto-scroll the tree to the selected module and jump back from picked DOM nodes
  • Inspect setup, state, props, route, exposed, and official store state
  • Record runtime timeline events including Transition, KeepAlive, and Suspense
  • Group timeline events by reason or module and drill into event details
  • Copy the visible timeline, copy grouped event summaries, and export grouped events
  • Persist panel filters, active tab, and timeline grouping between close/open cycles
  • Highlight the selected module's real DOM
  • Pick a live DOM element and jump back to the owning module
  • Jump from grouped timeline events directly to the owning module or highlighted DOM node
  • Patch module setup / state directly from the panel
  • Patch official store state directly from the panel
  • Edit route path, query rows, query JSON, and hash directly from the panel
  • Load query JSON back into query rows and sort query keys before navigation
  • Reset route editors, copy the current route, and copy or inspect event payloads
  • Export snapshots and inspect data in the browser console
  • Open or close the panel with Ctrl + Shift + D

Install

npm install -D @nodomx/devtools

Usage

import { createDevtools } from "@nodomx/devtools";
import { Nodom } from "nodomx";
import App from "./App.nd";

const app = Nodom.createApp(App, "#app");
app.use(createDevtools());
app.mount("#app");

Panel areas

  • App tabs: switch between mounted apps
  • Module tree: browse modules, search by name or hot id, and change selection
  • Timeline: review lifecycle, render, and suspense-related events, then group them by reason or module
  • Timeline exports: copy the currently visible timeline or the active group summary/events
  • Events: inspect the selected timeline event payload in detail, copy it, or send it to the console
  • Timeline groups: inspect the active group summary and recent events inside that group
  • Inspector: inspect and patch the selected module or store, edit route path/query/hash, and view the selected module path
  • Pick element: hover the page and click a real DOM element to focus its owning module
  • Route editor: edit query rows visually, round-trip them through JSON, reset drafts, or copy the current route

Runtime API

import {
  createDevtools,
  getDevtoolsHook,
  installDevtoolsHook,
  notifyDevtoolsUpdate
} from "@nodomx/devtools";

Common hook methods:

  • installDevtoolsHook(options?)
  • getDevtoolsHook()
  • notifyDevtoolsUpdate(app, reason, details?)
  • hook.getSnapshot(appId?)
  • hook.getTimeline(appId?)
  • hook.exportSnapshot(appId?)
  • hook.inspectSelection(appId?, moduleId?)
  • hook.highlightSelection(appId?, moduleId?)
  • hook.pickElement(target, appId?)
  • hook.navigateRoute(pathOrLocation, options?)
  • hook.applyModulePatch(appId?, moduleId?, "setup" | "state", payload)
  • hook.applyStorePatch(appId?, storeId, payload)

Notes

This is an embedded runtime panel, so it works without a separate browser extension. It can later evolve into a dedicated standalone DevTools experience.