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

tod-cli

v0.3.1

Published

Task manager embeded in your development repository.

Downloads

5

Readme

Tod cli

Install

Requirements

Tod is writted in JavaScript and you need to NodeJs, NPM or Yarn and GIT

Global install

Global installation with npm

npm install -g tod-cli

Glocal installation with yarn

yarn global add tod-cli

Has project dependencies

Installation with npm

npm install --save-dev tod-cli

Installation with yarn

yarn add --dev tod-cli

Then you need to edit your package.json to add new script

{
  "scripts": {
    "tod": "tod"
  }
}

and now you can execute tod commande from your prefered tool

Main concepts

TOD is currently higly dependent about GIT. You will see frequently in the documentation some words like context or identifier.

In the GIT project TOD associate a branch as context. Then if you change your current branch your are changing your current TOD's context.

All system store file in idependants file to avoid merge difficultes in a GIT project. When we are talking about identifier, it refer to the file name. This file name is an SHA1 string to avoid file conlision names and like GIT, you dont need to add the entire identifier to identify the task you want modify or delete.

Commands

init - project kickstart

tod init

Init tod project by create the project's folder architecture.

add - create a new todo

tod add [options] <description...>

By default the new todo is created into current context. By passing the option -b or --backlog, the new todo will be created into the backlog.

x - mark task as complete

tod x <identifier>

Is not possible to mark as complet a backlog task. Only contextualised task should be mark as complete.

rm - Delete task

tod rm [options] <identifier>

By default rm try to delete into the current context. By passing the option -b or --backlog, tod will try to delete the task from the backlog.

mv - move a task from Baklog to current context.

tod mv [options] <identifier>

With the option -b or --backlog, is it possible to move a task from the current context to the backlog.

resolve - close a context

tod resolve <context>

Delete all task off this context and delete the context folder.

export - export tod database

tod export <outputFile>

Export the tod database into an output json file.