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

@ramonda/devtools

v0.6.3

Published

Development-time devtools panel for Ramonda — component tree, state, and logs.

Readme

@ramonda/devtools

The development panel for Ramonda: the component tree with its state, props and hooks, and a way to get from something on screen to the component that drew it.

npm license

Status: 0.x. The API changes freely between releases while the design is being explored; from 1.0 the interfaces hold. A breaking change ships as a minor until then — see Upgrading for what that means for a version range, and the root README.

npm install -D @ramonda/devtools

Documentation: ramonda.dev/devtools

// main.ts — anywhere before your app mounts
if (import.meta.env.DEV) await import("@ramonda/devtools");

The import registers a <ramonda-devtools> element and nothing else. A purple R appears in the bottom-right corner; click it, or press Alt+D, to open the panel.

That line is yours to write, and it cannot move into the framework

Core does try the import itself in a development build, with the specifier held in a variable — and it has to be a variable, because a literal one breaks apps that do not use devtools at all:

| | a literal import("@ramonda/devtools") inside core | | --- | --- | | vite build | fails — Rollup failed to resolve import "@ramonda/devtools" | | esbuild | bundles, and ships a bare specifier no browser can resolve |

A variable specifier is left alone by the bundler, which leaves the browser to resolve @ramonda/devtools on its own — and it cannot. So only your app can load the panel: it is the one that knows the package is installed, and its bundler is the one that can resolve it. If you have never seen the badge, that missing line is why.

What is in it

The component tree, with each component's state, props and nested hooks — components in purple, hooks in green. Filtering by name keeps the ancestors of a match, so a result still reads as a tree and you can see where the thing lives.

Pick, which is the reverse of searching and usually the faster one: click the crosshair, then click the thing on the page, and the tree opens on the component that drew it.

The query cache, for anything @ramonda/query is holding — what is fresh, what is in flight, and what a refetch would do.

Diagnostics, the same RMD… codes the framework reports in the console, collected where you can read them in order rather than scrolling past them.

Development only

The panel is a devDependency and is loaded behind your own import.meta.env.DEV check, so nothing of it reaches a production bundle. It reads the framework's development-time diagnostics, which a production build does not emit.

See the devtools guide for the panels in full, and finding a component for the three ways round the tree.

License

MIT © Nikola Blagojević