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

task-queue-tq

v1.0.0

Published

A keyboard-driven, terminal-native task queue that makes you work on **one thing at a time**.

Readme

tq — Terminal Task Queue

A keyboard-driven, terminal-native task queue that makes you work on one thing at a time.

Pull the top task → focus mode with timer → finish → next. No click, no cloud, no bloated UI. Just your terminal and a queue.

────────────────────────────────────────────────────────
TASK QUEUE v2.0  ● ONLINE  4 TASKS    TODAY:0 WEEK:0 14:32
────────────────────────────────────────────────────────

→ PULL NEXT TASK                                  [SPACE]

Design login flow                                 MEDIUM
Implement API endpoints                             HIGH
Write documentation                                  LOW
Refactor auth middleware                          MEDIUM

────────────────────────────────────────────────────────
[A]dd  [↑/↓]  [E]dit  [D]elete  [J/K] Reorder  [SPACE] Pull  [Q]uit

Install

npm install -g task-queue-tui
tq

Or from source:

git clone https://github.com/engine-research-lab/task-queue-tui.git && cd task-queue-tui && npm i && npm link && tq

Requires Node 20+ and a terminal that supports 24-bit color.

Usage

tq                       # start with amber theme
tq --theme=grey          # start with mono grey
tq --theme=slate         # start with slate

Press T (Shift+T) to cycle themes on the fly.

Keybindings

Queue view

| Key | Action | |-----|--------| | / j k | Navigate tasks | | Space / Enter | Pull next task into focus mode | | a | Open inline add prompt | | e | Edit selected task (energy / type) | | d | Delete selected task | | J (Shift+J) | Move task down in queue | | K (Shift+K) | Move task up in queue | | T (Shift+T) | Cycle theme (amber → grey → slate) | | q | Quit |

Focus mode (working on a task)

| Key | Action | |-----|--------| | f | Finish task (marks completed) | | r | Return task to queue (goes to end) | | Space / Enter | Swap with first queued task | | q / Esc | Return to queue |

Inline add prompt

| Key | Action | |-----|--------| | Type | Enter task name | | / | Cycle energy level (MEDIUM → HIGH → LOW) | | / | Cycle task type (THINKING → BUILD → DESIGN → ADMIN) | | Enter | Add task | | Esc | Cancel |

Edit overlay

| Key | Action | |-----|--------| | Tab | Toggle between energy / type | | / | Change value | | Enter | Save | | Esc | Cancel |

Themes

| Theme | Primary | Dim | Vibe | |-------|---------|-----|------| | Amber (default) | #e1a72a | #996c20 | Warm retro terminal | | Mono Grey | #cccccc | #888888 | Clean monochrome | | Slate | #94a8b8 | #5a6e7e | Cool blue-grey |

Press T to cycle through them, or start with tq --theme=slate.

Data

Tasks are stored in ~/.taskqueue/tasks.json as plain JSON. No database, no cloud, no account.

[
  {
    "id": "abc123",
    "name": "Design login flow",
    "energy_level": "medium",
    "task_type": "design",
    "status": "queued",
    "position": 0,
    "created_at": "2026-05-24T03:01:41.771Z"
  }
]

To reset: rm ~/.taskqueue/tasks.json

Project structure

src/
├── index.ts    # Entry point
├── types.ts    # Task type definitions
├── theme.ts    # Color themes (amber, grey, slate)
├── db.ts       # JSON file persistence + CRUD
└── ui.ts       # Blessed TUI screens + keyboard handling

~600 lines total. No React, no VDOM, no build step.

Philosophy

  • Queue, not list — FIFO ordering forces focus. Do the top task, then the next.
  • Keyboard-native — every action has a key. No mouse, no clicking.
  • Terminal-native — no boxes (no jagged resize), no background colors, respects your terminal theme.
  • Zero infrastructure — single JSON file, no Supabase, no server, no API keys.

License

MIT