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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ariana

v0.4.6

Published

Debug your JS/TS/Python code in development way faster than with a traditional debugger

Downloads

1,356

Readme

Ariana is an IDE extension to understand what happens during runtime. You don't have to put print(), console.log() or breakpoints. Currently supports JS/TS & Python.

✨ Key Features

Use Ariana VSCode extension to :

  • 🕵️ Hover over any expression to see its last recorded values
  • ⏱️ See how long it took for any expression in your code to run.
  • 🧵 Provide runtime history to coding agent for context-aware debugging (WIP)

💾 How to install

1) Install the extension on your IDE

Install the extension on the VSCode Marketplace, or by searching for Ariana in the extensions tab in VSCode or Cursor.

2) Install the ariana CLI

| Package Manager | Command | |-----------------|--------------------------------| | npm | npm install -g ariana | | pip | pip install ariana |

📖 How to use

1) ✨ - REQUIRED - Add ariana just in front of your command. It will collect runtime information

ariana <run command>

For example:

| Codebase Type | Command | |-----------------|----------------------------------------------| | JS/TS | ariana npm run dev | | Python | ariana python myscript.py --some-options-maybe |

2) 👾 View runtime insights directly in your code.

Open a code file, press ctrl + shift + p and search for the Ariana: Toggle Traced Expressions Highlighting command.

  • 🗺️ Identify which sections of your code ran

    | Highlight Color | Meaning | |----------------|--------------------------------| | 🟢 Green | Code segment ran successfully. | | 🔴 Red | Code crashed here. | | ⚪ None | Code segment didn’t run or couldn't be recorded. |

  • 🕵️ Hover over any expression to reveal its past values

    Demo part 2

3) 🤖 Use AI to recap what your code did & identify error root causes (WIP)

Run:

ariana --recap

It will tell you what might have gone wrong with your code.

Coming soon: A coding agent that answers questions and directly impacts your codebase


Preview :

To test Ariana before using it on your own code:

git clone https://github.com/dedale-dev/node-hello.git
cd node-hello
npm i
ariana npm run start

Troubleshooting / Help

😵‍💫 Ran into an issue? Need help? Shoot us an issue on GitHub or join our Discord community to get help!

Requirements

For JavaScript/TypeScript

  • A JS/TS node.js/browser codebase with a package.json
  • The ariana command installed with npm install -g ariana (or any other installation method)

For Python

  • Some Python >= 3.9 code files (Notebooks not supported yet)
  • The ariana command installed with pip install ariana outside of a virtual environment (or any other installation method)

Supported languages/tech

| Language | Platform/Framework | Status | |----------|-------------------|---------| | JavaScript/TypeScript | Node.js | ✅ Supported | | | Bun | ✅ Supported | | | Deno | ⚗️ Might work | | Browser Frameworks | | | | JavaScript/TypeScript | React & .jsx / .tsx | ✅ Supported | | | JQuery/Vanilla JS | ✅ Supported | | | Vue/Svelte/Angular | ❌ Only .js / .ts | | Other Languages | | | | Python | Scripts / Codebases | ✅ Supported | | | Jupyter Notebooks | ❌ Not supported (yet) |

Code processing disclaimer

We process and temporarily store for 48 hours your code files on our server based in EU. It is not sent to any third-party including any LLM provider. An enterprise plan will come later with enterprise-grade security and compliance. If that is important to you, please let us know.

Licence

Code generated and/or transformed by Ariana is yours and not concerned by the following licence and terms.

Ariana is released under AGPLv3. See LICENCE.txt for more details.