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

jadwal

v1.0.3

Published

Personal to-do list, organized as a simple, yet effective tool for task management

Downloads

23

Readme

Jadwal (To Do)

npm license

Personal to-do list, organized as a simple, yet effective tool for task management. Using todo.txt file to store data with todo.txt format rule.

Environtment

To store your to-do list, create personal Git project and create todo.txt file in your project with main branch name. Clone it to your local directory.

Add environment to your system:

Unix/Linux/macOS

Temporary (for the current session):

export LOCAL_REPO=/path/to/local/repo
export REMOTE_GIT=https://github.com/username/todo-repo.git

Permanent (persists across sessions):

Add the following lines to your shell's configuration file (e.g., ~/.bashrc or ~/.zshrc):

export LOCAL_REPO=/path/to/local/repo
export REMOTE_GIT=https://github.com/username/todo-repo.git

Then, either restart your terminal or run source ~/.bashrc (or source ~/.zshrc) to apply the changes.

Windows

Temporary (for the current session), using the Command Prompt (CMD):

set LOCAL_REPO=C:\path\to\local\repo
set REMOTE_GIT=https://github.com/username/todo-repo.git

Temporary (for the current session), using the PowerShell:

$env:LOCAL_REPO = "C:\path\to\local\repo"
$env:REMOTE_GIT = "https://github.com/username/todo-repo.git"

Permanent (persists across sessions), using the Command Prompt (CMD):

setx LOCAL_REPO "C:\path\to\local\repo" /m
setx REMOTE_GIT "https://github.com/username/todo-repo.git" /m

Permanent (persists across sessions), using the PowerShell:

[Environment]::SetEnvironmentVariable("LOCAL_REPO", "C:\path\to\local\repo", "User")
[Environment]::SetEnvironmentVariable("REMOTE_GIT", "https://github.com/username/todo-repo.git", "User")

Install

NPM must be installed on your system, then install it with global parameters:

npm i -g jadwal

Usage

Once the jadwal package is installed, the following commands are available:

jadwal add - Add a new todo. Use jadwal help add for detailed usage.

Examples:

Unix/Linux/macOS

Using long options:

jadwal add --description "Finish report" \
    --priority A \
    --creation-date 2024-09-20 \
    --completion-date 2024-09-30 \
    --project Work \
    --context Office \
    --special-tag reminder:2024-09-25

Using short options:

jadwal add \
    -d "Finish report" \
    -p A \
    -c 2024-09-20 \
    -P Work \
    -t Office \
    -s reminder:2024-09-25

Windows

jadwal add --description "Finish report" ^
    --priority A ^
    --creation-date 2024-09-20 ^
    --project Work ^
    --context Office ^
    --special-tag reminder:2024-09-25

Using short options:

jadwal add ^
    -d "Finish report" ^
    -p A ^
    -c 2024-09-20 ^
    -P Work ^
    -t Office ^
    -s reminder:2024-09-25

Both examples will add a new todo with the following attributes:

  • Description: "Finish report"
  • Priority: A
  • Creation Date: January 15, 2023
  • Completion Date: September 30, 2024
  • Project Tag: Work
  • Context Tag: Office
  • Special Tag: reminder:2024-09-25

jadwal update - Update an existing todo. Use jadwal help update for detailed usage. Below is example to update data with adding completion data, new description and priority attributes. And don't forget to provide old description as key for updating existing data.

jadwal update \
    -d "Update finish report" \
    -p B \
    -c 2024-09-20 \
    -o "Finish report"

For long option and Windows commands, see the example in add section above.

jadwal delete - Delete a todo. Use jadwal help delete for detailed usage.

jadwal list - List all todos.

jadwal done - Mark a todo as done.

jadwal sync - Sync todos with Git.

jadwal reveal - Reveal todo.txt in explorer.

jadwal help - Show the general help message.

jadwal help <command> - Show detailed help for a specific command (e.g., jadwal help add).

License

MIT