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

@little-dash/cli

v0.1.1

Published

Developer CLI for littledash — live preview, device tools, and project scaffolding

Readme

@little-dash/cli

Developer CLI for littledash smart displays. Live preview, device tools, and project scaffolding.

npm install -g @little-dash/cli

Commands

littledash dev [target]

Open a live preview of a running littledash app in a small standalone window.

littledash dev                  # previews localhost:3000
littledash dev localhost:4000
littledash dev 192.168.1.10:3000

The preview renders the app's /display response pixel-for-pixel like the device (same 5x7 pixel font, icons, built-in bitmaps, and on-device animations), and has controls for:

  • manual refresh (R) and pausing/resuming auto-refresh (A)
  • refresh interval override (or follow the app's refreshInterval)
  • rotation (T) and zoom

It opens in a Chromium --app window when Chrome/Edge/Brave/Chromium is installed, otherwise in your default browser. Use --no-open to just run the preview server, --port to pin its port.

littledash device list

List littledash devices connected via USB. Each device is probed over serial for its configured app server, WiFi state, IP, and battery.

littledash device list
littledash device list --no-probe   # just list ports, don't talk to them
littledash device list --all        # include ports that don't look like devices
littledash device list --json       # machine-readable output

littledash device configure [serverUrl]

Configure a connected device: WiFi credentials, the app server URL (your local IP is auto-detected if omitted), and any variables the app's /variables endpoint asks for.

littledash device configure                  # auto-detect IP:3000
littledash device configure 192.168.1.10:4000
littledash device configure --wifi           # scan for networks from the device

littledash device monitor

Interactive serial monitor. Prints device logs and lets you type firmware commands (help, status, config, battery, …).

littledash init [dir]

Scaffold a new littledash app — an Express server with a starter display.

littledash init my-dash
cd my-dash
npm install
npm run dev

Then edit src/display.ts and watch it live with littledash dev.

Development (in the monorepo)

yarn workspace @little-dash/cli build
node packages/littledash-cli/dist/index.js --help

assets/ holds copies of the firmware's pixel fonts and built-in bitmaps so the preview matches the panel; refresh them with yarn workspace @little-dash/cli assets:sync after changing firmware fonts or bitmaps.