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

better-ares-cli

v1.0.2

Published

Beautiful interactive TUI manager for webOS development via ares-cli

Readme

better-ares-cli

A beautiful interactive TUI for webOS development — wraps ares-cli so you never have to memorize commands again.

Node.js License

┌─────────────────────────────────────────────────────────────────────┐
│ ⬡  WebOS Manager                          ● mydevice (192.168.1.10) │
├──────────────┬──────────────────────────────────────────────────────┤
│ Navigation   │  ◉  Dashboard                                        │
│ ▶ ◉ Dashboard│                                                      │
│   ⬡ Devices  │  ⬡ Devices            ⊕ Installed Apps [mydevice]   │
│   ✦ Generate │  ● mydevice (default) › com.example.app  v1.0.0     │
│   ⊟ Deploy   │  ○ emulator           › com.webos.app.music          │
│   ⊕ Apps     │                                                      │
│   ≡ Logs     │  Quick Actions                                       │
│   ⇄ Transfer │  ▶ [g] Generate App                                  │
│   $ Shell    │    [p] Package & Deploy                              │
│   ◎ Inspector│    [m] App Manager                                   │
│ ─────────────│    [l] Log Viewer                                    │
│ ↑↓ navigate  │    [s] Shell                                         │
│ ⏎  select    │    [d] Manage Devices                                │
└──────────────┴──────────────────────────────────────────────────────┘

Features

| Screen | What it does | |--------|-------------| | Dashboard | Device status, installed apps, quick-action shortcuts | | Devices | Add / remove / set-default devices (ares-setup-device) | | Generate App | Scaffold from any ares-generate template | | Package & Deploy | Package → install → launch in one guided flow | | App Manager | List, launch, stop, remove installed apps | | Log Viewer | Live log stream with pause / filter (ares-log -f) | | File Transfer | Push / pull files between host and device | | Shell | Run shell commands on the device with history | | Inspector | Open Web Inspector for a running app |

Requirements

  • Node.js ≥ 18
  • ares-cli (@webosose/ares-cli) installed and on PATH
npm install -g @webosose/ares-cli

Installation

Quick install (recommended)

curl -fsSL https://raw.githubusercontent.com/FernandoHaeser/better-ares-cli/main/install.sh | bash

Via npm

npm install -g better-ares-cli

From source

git clone https://github.com/FernandoHaeser/better-ares-cli.git
cd better-ares-cli
npm install
npm run build
npm link

Usage

betterares

That's it. The TUI opens in your terminal.

Keyboard shortcuts

| Key | Action | |-----|--------| | / | Navigate sidebar / lists | | Enter | Select / confirm | | Esc / Tab | Back to sidebar | | q (in sidebar) | Quit | | Ctrl+C | Quit anywhere |

Each screen shows its own shortcuts at the bottom.

Development

# Install dependencies
npm install

# Build & run
npm start

# Build only
npm run build

The build bundles with esbuild into dist/cli.mjs.

Contributing

  1. Fork the repo
  2. Create a branch: git checkout -b feat/my-feature
  3. Commit and push
  4. Open a pull request

See docs/RELEASE.md for the release process.

License

MIT © FernandoHaeser