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

@chordcode/ticktick

v1.0.4

Published

A command-line tool for TickTick

Downloads

14

Readme

TickTick CLI

License: MIT Version

TickTick CLI is a cross-platform command-line tool that allows you to interact seamlessly with your TickTick tasks. Manage your reminders, create tasks, organize lists, and more—all directly from your terminal.

Features

  • Add Tasks: Create new tasks with extended options like descriptions, tags, due dates, priorities, and reminders.
  • Manage Lists: Retrieve and display your TickTick lists in both Markdown and JSON formats.
  • Configuration Setup: Easy setup for authentication using TickTick's OAuth.
  • Cross-Platform: Works on Windows, macOS, and Linux.
  • Global Commands: Use ticktick or tt commands globally after installation.

Installation

Ensure you have Node.js installed, then install TickTick CLI globally using NPM:

npm install -g @chordcode/ticktick

Configuration

After installation, set up TickTick CLI by running the configuration command. The tool will guide you through the necessary steps automatically.

ticktick --configure

Usage

After installation and configuration, you can use the ticktick or tt command to manage your tasks.

Adding a Task

ticktick "Finish the report" -d notes.md -l "Work" -t "urgent" -D "next Monday" -p 2

Options:

  • -c, --configure: Run the configuration setup.
  • -d, --description <file>: Specify a Markdown file for the task description.
  • -l, --list <list_name>: Specify the list to add the task to.
  • -t, --tag <tag>: Add tags to the task (can be used multiple times).
  • -D, --due-date <due_date>: Set the due date (e.g., "tomorrow", "2023-11-01 14:00").
  • -s, --start-date <start_date>: Set the start date.
  • -p, --priority <priority>: Set priority level (0: None, 1: Low, 2: Medium, 3: High).
  • -r, --reminder <reminder>: Add reminders (can be used multiple times).
  • -z, --timezone <timezone>: Set the time zone (e.g., "America/Los_Angeles").
  • -A, --all-day: Set the task as an all-day task.

Listing Tasks

  • Display tasks for a specific list in Markdown:

    ticktick -g "Work"
  • Get list data in JSON format:

    ticktick -G "Work"
  • List all list names:

    ticktick -ls
  • List all lists in JSON format:

    ticktick -LS

Installing as a Global Command

To set up ticktick and tt as global commands:

ticktick -i

Note: Ensure the installation directory is in your PATH environment variable.

Examples

# Add a task with a description, tags, due date, and priority
ticktick "Prepare for the meeting" -d meeting_notes.md -t "work" -t "urgent" -D "tomorrow 10am" -p 3

# Display tasks for the 'Personal' list in formatted Markdown
tt -g "Personal"

# Get list data for 'Work' in JSON format
ticktick -G "Work"

# List all available lists
tt -ls

License

This project is licensed under the MIT License.

Acknowledgements

Developed by ChordCode with support from AI technologies.

Quick Start

  1. Install TickTick CLI:

    npm install -g @chordcode/ticktick
  2. Configure the CLI:

    ticktick --configure
  3. Start managing your tasks from the command line!


Enjoy seamless task management with TickTick CLI!