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

@darknoon/dave

v0.0.1-alpha.7

Published

Chat UI for Claude Code. Stores files in a configurable data directory.

Readme

Dave

Chat UI for Claude Code. Stores files in a configurable data directory.

Install

Requires Bun 1.0 or later. To install or update Bun:

curl -fsSL https://bun.sh/install | bash

Run it with bunx (always uses the latest version):

bunx @darknoon/dave@latest

Dave uses the current directory for data and opens in the browser automatically.

Options:

bunx @darknoon/dave@latest --data-dir /path/to/data  # custom data directory (default: cwd)
bunx @darknoon/dave@latest --port 3002               # custom port (default: random)
bunx @darknoon/dave@latest --no-open                  # don't open browser automatically

Auth: If you're already signed into Claude Code, Dave just works. To sign in:

claude login

Or set an API key directly:

export ANTHROPIC_API_KEY=sk-ant-...
export CLAUDE_CODE_OAUTH_TOKEN=sk-ant-oat01-

Global install (optional):

If you prefer a shorter command, you can install globally — but you'll need to manually update:

bun install -g @darknoon/dave       # install
bun install -g @darknoon/dave@latest # update

Stack

  • React 19 + TypeScript + Vite + Tailwind v4
  • Bun runtime

Philosophy

  • Everything is a file
    • Standalone chats w/ ai are just json files
    • Main way of using & customizing the system is files
    • Obviously, skills are just files/folders
    • Widgets get their data from files

Dev

bun dev

Data types

Markdown file Chat (talks to an agent like claude code that can modify files) Micro-app (just an html file in an iframe, but gets an api that can read/write/subscribe to files to the shared fs) Skill (just regular md files, follows normal convention) Metadata (a small sqlite db that just tracks recent items, and any indexing necessary) Widget (a small react file that takes data coming from a md file and renders it)

Screens

Main screen

Items edited that day (ai chats + documents) Shows most recent items, or anything needing attention

Chat screen

Traditional LLM chat, talks to Claude with agents sdk Important features

  • Shows thinking
  • When modifying a file, file can be opened from chat

chats are just json files stored in …/chats

Markdown editor

Simple mobile-friendly markdown editor Important features

  • Supports obsidian-style links

Skills

Shows a slightly nicer UI for skills, just recognizing that its a skill file vs regular markdown nothing much.

You can get to them if you go to settings stored in …/.claude/skills like usual

Settings

"Backup" button. Not much here yet.

Auth

We use a claude auth token mostly (use claude setup-token to use your subscription)