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

doneit-tui

v1.4.0

Published

A keyboard-driven terminal UI for task management

Readme

DoneIt

A keyboard-driven terminal UI for personal task and project management. Built for developers who live in the terminal.

License

Features

  • Kanban-style layout - Three-column view (Todo | In Progress | Done)
  • Vim-style navigation - hjkl keys, no mouse required
  • Fast task capture - Add tasks in seconds without leaving the terminal
  • Rich task properties - Priority, project, tags, due dates, and descriptions
  • Powerful filtering - Search, filter by project, tags, or priority
  • Persistent storage - Local JSON with automatic backups
  • Cross-platform - Works on macOS, Linux, and Windows

Installation

npm install -g doneit-tui

Then run from anywhere:

doneit

From Source

git clone https://github.com/felgeekpe/doneit-tui.git
cd doneit-tui
npm install
npm run build
npm link

Usage

Keyboard Shortcuts

Navigation

| Key | Action | |-----|--------| | j / | Move down | | k / | Move up | | h / | Previous column | | l / | Next column | | g | Jump to top | | G | Jump to bottom |

Task Actions

| Key | Action | |-----|--------| | n | New task | | e / Enter | Edit task | | d | Toggle done | | m | Move to next status | | ! | Cycle priority | | x | Delete task |

Filters & Search

| Key | Action | |-----|--------| | / | Search tasks | | p | Filter by project | | Esc | Clear filters / Close modal |

General

| Key | Action | |-----|--------| | ? | Show help | | q | Quit |

Task Properties

Each task can have:

  • Title - Task name (required)
  • Description - Detailed notes (Markdown supported)
  • Status - todo, in_progress, done, or archived
  • Priority - low, medium, high, or urgent
  • Project - Group tasks by project
  • Tags - Flexible labels for categorization
  • Due Date - Track deadlines

Data Storage

DoneIt stores your data locally in ~/.doneit/:

  • data.json - Your tasks
  • backups/ - Automatic backups (keeps last 5)

Tech Stack

Development

# Watch mode (auto-rebuild on changes)
npm run dev

# Type checking
npm run typecheck

# Build
npm run build

Contributing

Contributions are welcome! Please read the Contributing Guide for details.

License

MIT © Felipe Serna