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

canrylog

v0.4.1

Published

A personal time tracker

Downloads

9

Readme

canrylog-cli

License: GPL v3+ NPM Version

CLI version of Canrylog, another time tracking system.

Emacs version: https://gitlab.com/canrylog/canrylog.el

My take on time tracking.

Currently in experimental stage, developed with the assumption that I'm the only user.

Getting started

  • Install the package
  • By default, the tracking file will be put under ~/.canrylog. To change this, modify the path.repo configuration option.
  • canrylog switch <task> to start tracking time
  • canrylog switch Downtime to switch to the task called “Downtime”, which by convention means clocked out.
  • canrylog visit to edit the tracking file with your editor. Hand editing is error prone: make sure events are sorted correctly and the timestamps are in the right format. Each event is <timestamp> <task name> (two spaces between).

Technology stack

  • Using Bun as the package manager and bundler. It's not that Bun has great DX compared to, say, Cargo, it's just that Node and TypeScript's DX is infuriating. Let me import with the normal syntax in your repl! Why does the TS language server not work without a project wide config file?! Please use hard links or symlinks to save space usage!
  • Package distributed to npm
  • argument handling done with commander
  • Prompts with enquirer
  • Manages configuration with conf

Install

npm install -g canrylog

Use

  • [X] canrylog about: print an about message for Canrylog

  • [X] canrylog help [command]: print help text, optionally for [command]

  • [X] canrylog config: see all configuration keys. TODO: make this interactive

  • [X] canrylog config <key>: read value of configuration <key>

  • [X] canrylog config <key> <value>: set configuration <key> to <value>

  • [X] canrylog switch: select a task and switch to it

  • [X] canrylog switch <task>: switch to <task> at the current moment

  • [ ] canrylog switch <task> <moment>: switch to <task> at the specified moment

  • [X] canrylog clock-out: Same as switching to the “Downtime” task, representing the state of not doing anything of note.

  • [X] canrylog status: print current task and status

  • [X] canrylog task <task>: print information about <task>

  • [X] canrylog moment <moment>: print information about <moment>

Git-based tracking file synchonization:

  • [X] sync.enabled config option. If true and the tracking folder is a Git repository, then automatic synchronization will be performed after switching tasks.
  • [X] canrylog sync: pull then push
  • [X] canrylog sync pull: pull down new changes. Actually more like git fetch; git rebase.
  • [X] canrylog sync push: push changes to Git remote

Implemented for debugging but might be useful in the future:

  • [X] canrylog list-tasks: print all available tasks
  • [X] canrylog visit: edit the tracking file with $EDITOR
  • [ ] canrylog rename-task <task> <newname>: rename <task> to <newname>

Configuration

Incomplete.

Other solutions

https://www.emacswiki.org/emacs/CategoryTimeTracking

  • logtime: plain text, very similar in concept
  • timeclock.el: C-h f timeclock-in RET
  • Org mode
  • WakaTime, wakatime-mode on MELPA
  • ActivityWatch, activity-watch-mode on MELPA
  • harvestime: plain text as well, centered around vim