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

tui-kanban-board

v0.2.2

Published

Task Management App of TUI

Downloads

40

Readme

TUI Trello Kanban Board

日本語 | 中文 | 한국어

A terminal-based Kanban board. Fully keyboard-driven.

Installation

Using bun (recommended)

bun install -g tui-kanban-board
tkb

Download binary directly

Download the file for your platform from GitHub Releases.

Note: This is a private repository. GitHub authentication is required to download. Using the gh CLI is recommended.

Linux (x64)

gh release download --repo OWNER/REPO --pattern "tkb-linux-x64.tar.gz"
tar xzf tkb-linux-x64.tar.gz
chmod +x tkb
./tkb

macOS (Apple Silicon / M1+)

gh release download --repo OWNER/REPO --pattern "tkb-darwin-arm64.tar.gz"
tar xzf tkb-darwin-arm64.tar.gz
chmod +x tkb
# Skip security check (first time only)
xattr -d com.apple.quarantine tkb
./tkb

macOS (Intel)

gh release download --repo OWNER/REPO --pattern "tkb-darwin-x64.tar.gz"
tar xzf tkb-darwin-x64.tar.gz
chmod +x tkb
xattr -d com.apple.quarantine tkb
./tkb

Windows (x64)

gh release download --repo OWNER/REPO --pattern "tkb-windows-x64.zip"
Expand-Archive tkb-windows-x64.zip .
.\tkb.exe

Usage

Run in a directory containing a .tkb file. If none exists, one will be created automatically.

# Open .tkb in current directory (Workspace scope)
tkb

# Open a specific file
tkb path/to/board.tkb

# Open in Global scope (~/.config/tkb/global.tkb)
tkb --global
tkb -g

# Set language
tkb --lang en
tkb --lang zh
tkb --lang ko

Keyboard Shortcuts

Board

| Key | Action | |-----|--------| | / | Move between columns | | / / k / j | Move between cards | | Enter | Preview card | | n | Add new card | | e | Edit card | | d | Delete card | | Shift+←/→ | Move card to adjacent column | | q | Quit |

Columns

| Key | Action | |-----|--------| | N (Shift+n) | Add column (to the right of current) | | E (Shift+e) | Edit column name | | D (Shift+d) | Delete column | | Ctrl+←/→ | Reorder columns |

Preview / Edit Mode

| Key | Action | |-----|--------| | Esc | Close / Cancel | | Ctrl+S | Save | | e | Switch from preview to edit |

Card Format (Markdown)

Card content supports Markdown.

# Heading

**bold** / *italic* / ~~strikethrough~~ / `code`

- list item
  - nested item

1. ordered list
2. second item

| Header1 | Header2 |
|---------|---------|
| Cell1   | Cell2   |

File Format (.tkb)

JSON file. Auto-saved on every change.

{
  "scope": "Workspace",
  "columns": [
    {
      "id": "column-xxx",
      "title": "To Do",
      "tasksIds": ["task-yyy"]
    }
  ],
  "tasks": {
    "task-yyy": {
      "id": "task-yyy",
      "description": "Task content",
      "columnId": "column-xxx"
    }
  }
}

Acknowledgements

This project is inspired by the VS Code extension vscode-extension-trello-kanban-board by Mayank Kumar Chaudhari. We are grateful for his wonderful work that sparked the idea of bringing the same experience to the terminal.


Development

bun install
bun dev