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

quiklist

v1.0.2

Published

The quickest command line checklist app for managing your tasks efficiently.

Downloads

13

Readme

quiklist

The quickest command line checklist app for managing your tasks efficiently.

Features

  • Fast CLI Interface: Quick commands for adding, marking, and managing checklist items
  • Priority Support: Assign priorities (HIGH, MEDIUM, LOW) with customizable visual styles
  • Deadline Tracking: Set deadlines for tasks with flexible date formats
  • Sorting Options: Sort items by priority, creation date, or deadline
  • Interactive Prompts: User-friendly prompts for better UX

Installation

Prerequisites

  • Node.js (v14 or higher)
  • npm or yarn

Install Globally

npm install -g quiklist
# or
yarn global add quiklist

Build from Source

git clone https://github.com/udbhavbalaji/quiklist.git
cd quiklist
npm install
npm run build
npm link

Quick Start

  1. Initialize quiklist (first time only):

    quiklist init
    # or
    ql init
  2. Create a new list in your project directory:

    quiklist create
  3. Add items to your list:

    quiklist add "Buy groceries"
    quiklist add "Finish project" --h
    quiklist add "Call mom" -d "13-09-2025"
  4. View your list:

    quiklist show
  5. Mark items as done:

    quiklist mark

Commands

Global Commands

  • quiklist|ql --help - Show help information
  • quiklist|ql --version - Show version information

List Management

  • quiklist|ql create [options] - Initialize a new list in current directory

    • -d, --default - Use default settings instead of interactive prompts
  • quiklist|ql delete-list - Deletes the list at the path in which the command was called (with confirmation)

Item Management (within a list directory)

  • quiklist|ql add [item_text...] - Add new item to your local list (global by default if you're at a path where there is no quiklist created). By default, new items are assigned 'LOW' priority

    • -m, --medium - Set priority to MEDIUM
    • --h, --high - Set priority to HIGH
    • -d, --deadline [deadline] - Set deadline (format depends on config)
    • -g, --global - Add item to your global list
  • quiklist|ql mark - Mark items as completed (interactive selection)

  • quiklist|ql show [options] - Display list items

    • -u, --unchecked - Show only unchecked items
  • quiklist|ql delete - Delete items from the list (interactive selection)

  • quiklist|ql edit - Edit existing items (interactive selection)

Configuration

quiklist stores configuration in ~/.config/quiklist/config.json in the following format:

{
  "userName": "Udbhav Balaji",
  "dateFormat": "DD-MM-YYYY" | "DD/MM/YYYY" | "YYYY-MM-DD" | "YYYY/MM/DD",
  "useEditorForUpdatingText": true | false,
  "lists": {
    // mapping of created lists to their data path
    "global": "path/to/your/data"
  }
}

Examples

Basic Workflow

# Initialize in a project
cd my-project
quiklist create # or ql create

# Add some tasks
quiklist add "Implement user authentication" # or ql add
quiklist add "Write unit tests" --h # or ql add
quiklist add "Update documentation" -m # or ql add
quiklist add "Deploy to production" -d "2024-02-01" # or ql add

# View all items
quiklist show # or ql show

# View only pending items
quiklist show -u # or ql show

# Mark completed tasks
quiklist mark # or ql mark

# Edit a task
quiklist edit # or ql edit

Managing Lists across multiple projects & using the global quiklist

# working on project A
cd project-A
quiklist init
quiklist add "Project A task 1, v important" --h
quiklist add "Add documentation"

# working on project B
cd project-B
quiklist init
quiklist add "Project B task" -m
quiklist add "some other task" -d "04-05-2025"

# working with global quiklist

# Anywhere within home directory
quiklist-global add "Global task" -m
# or qlg add "Global task" -m
# or quiklist add "Global task" -m -g
# or ql add "Global task" -m -g

Development

Setup

npm install
npm run dev          # Run in development mode
npm run build        # Build the project
npm run typecheck    # Run TypeScript type checking
npm test            # Run tests

Project Structure

src/v2/
├── commands/       # CLI command implementations
├── lib/            # Core library functions
├── types/          # TypeScript type definitions
└── index.ts        # Main application entry point

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests for new functionality
  5. Run the test suite: npm test
  6. Submit a pull request

License

MIT - see LICENSE file for details

Support

If you encounter any issues or have questions: