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 🙏

© 2025 – Pkg Stats / Ryan Hefner

clickctl

v1.1.1

Published

A CLI tool for interacting with ClickUp API

Readme

clickctl

GitHub

A simple CLI tool for interacting with ClickUp tasks right from the terminal. Built with devs in mind 🤓. Now you can view and update your ClickUp tasks without leaving your terminal!

✨ Features

  • 🌱 Authenticate with ClickUp using OAuth
  • 🧭 Interactively browse teams, spaces, folders, lists, and tasks
  • 📋 View all tasks in a list, sorted and color-coded by status
  • 🛠️ Update task properties like status and dates

🚀 Installation

  1. Install clickctl globally using npm:
    npm install -g clickctl

🔐 Authentication

Before using clickctl, you'll need to authenticate with the ClickUp API:

  1. Log in to ClickUp.

  2. In the upper-right corner, click your avatar.

  3. Select Settings.

  4. In the sidebar, click Apps.

  5. Click Create new app.

  6. Name the app (you can call it clickctl 🙈) and add http://localhost:3000/callback as the redirect URL.

  7. Copy your Client ID and Client Secret.

  8. Run the authentication command:

    clickctl auth --client-id <your-client-id> --secret <your-client-secret>

    This will open a browser window for you to authorize the app and stores your credentials securely.

  9. Next time you can simply run:

    clickctl auth

    It will reuse your saved credentials

🧠 Usage

  1. Run any command using:
    clickctl <command> [options]
  2. Use the --help flag to see available commands and options:
    clickctl --help

🧪 MVP Highlights

  1. The core of clickctl is the browse command:
    clickctl browse

You’ll be guided through your ClickUp hierarchy — team → space → folder → list — and then shown your tasks in a clean, sortable, color-coded view.

🫡 Commands

| Command | Description | |:-------:|:-----------------------------------------------:| | auth | Authenticate with ClickUp via OAuth | | browse | Interactively browse and manage tasks in a list | | teams | View your ClickUp teams (workspaces) | | spaces | View spaces in a specific team | | folders | View folders in a specific space | | lists | View lists in a specific folder |

📌 Version

  • v1.0.0: Initial release with basic functionality for listing folders, lists, and tasks, and updating task properties.
  • v1.1.0: Added interactive browsing of tasks, color-coded status labels, and command help improvements.
  • v1.1.1: Refined task browsing with sorting, status color UX, and fixed date formatting in updates.

📬 Contributions

This is an open MVP. PRs, issues, and feature suggestions are welcome! If you have ideas for enhancements (like creating tasks, archiving, etc.), feel free to open an issue or PR.

🛠 Built With

  • Node.js
  • Commander
  • Chalk
  • Inquirer