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 🙏

© 2024 – Pkg Stats / Ryan Hefner

todoer

v1.0.0

Published

The todoer CLI command project is user-friendly command-line interface tool designed to manage your todo tasks efficiently. With todoer, you can easily create, read, update, and delete tasks directly from your terminal, streamlining your productivity work

Downloads

15

Readme

Todoer

The todoer CLI command project is user-friendly command-line interface tool designed to manage your todo tasks efficiently. With todoer, you can easily create, read, update, and delete tasks directly from your terminal, streamlining your productivity workflow.

Installation

To install Todoer, run the following command:

npm install -g todoer

Usage: todoer [options] [command]


  • Usage defines how the user should run the CLI tool.
    • Todoer: This is the name of the CLI tool.
    • [options]: These are optional flags or options the user can provide (like --version, --help, etc.).
    • [command]: These are the commands that perform specific actions (like add, edit, rm ,del,list).

2. Description of the Tool

  • This section gives an overview of the tool's purpose. In this case:

    The todoer CLI command project is a user-friendly command-line interface tool designed to manage your todo tasks efficiently. With todoer, you can easily create, read, update, and delete tasks directly from your terminal, streamlining your productivity workflow.

    The description summarizes the functionality and objective of the CLI tool (i.e., managing tasks efficiently).

3. Options

  • Options are flags that modify the behavior of the command or provide additional information. These are generally preceded by - or --.

    • -V, --version: This is an option that, when used, outputs the version number of the CLI tool. Both -V and --version are aliases for this option, so the user can type either one to get the same result.

    Example:

     todoer --version

4. Commands

  • Commands are specific actions that the user can perform with the CLI tool. Commands often take arguments or options to modify the action.

    Here are the commands listed for the Todoer CLI tool:

    • add: Adds a new todo task.

      Example:

      todoer add
    • ch <id> <task>: This is a shorthand way to edit a todo using the ID of the task and the new task description.

      Example:

      todoer ch 1 "Complete assignment"
    • edit: Edits an existing todo. This may take further arguments like ID and new task description, task priority, tast status, task deadline.

      Example:

      todoer edit
    • rm <id>: Removes (deletes) a todo by its ID.

      Example:

      todoer rm 1
    • del: Deletes all todos. This is a bulk delete command.

      Example:

      todoer del
    • ls: Lists all todos.

      Example:

      todoer ls
    • list: Lists todos using some sort of filter. This command might support various filtering options like Completed | InProgress | onHold

      Example:

      todoer list
    • get <id>: Display todo details by Todo ID.

      Example:

      todoer get 1
    • h: This likely shows the available commands. It's a shorthand for help.

      Example:

      todoer h

Explanation of How to Use the Tool

  1. Add a task:

    todoer add
  2. Edit a task:

    todoer ch 1 "Go to the gym"
  3. Shorthand way to Edit a task by ID:

    todoer ch 1 "Go to the gym"
  4. Remove a task by ID:

    todoer rm 1
  5. Delete all tasks:

    todoer del
  6. List all tasks:

    todoer ls
  7. List tasks with Filter (Completed/Inprogress/onHold):

     todoer list
  8. Display Todo Details by ID:

     todoer get 1
  9. Display help:

    todoer --help

Summary

To explore Todopro CLI tool:

  • Install Todopro: Install the CLI globally using npm with npm install -g todoer.
  • Run Commands: the actual actions you perform with the tool, like todoer add, todoer edit, todoer ch <id> <task>, todoer rm <id>, todoer get <id>, todoer ls, todoer list, todoer del .
  • help and h commands display detailed usage instructions for specific commands.
  • The Options are flags like --version or -V that give you extra information or modify the behavior.

Author

Sanjay Bhandari

License

This project is licensed under the MIT License.

Contributing

Contributions are welcome! Please open an issue or submit a pull request on the GitHub repository.