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

@sterliakov/toggl-tracker

v0.3.4

Published

A simple cross-platform GUI for Toggl tracker API.

Readme

Toggl Track client

Licence Build Renovate enabled GitHub Release Crates.io Version NPM Version

Disclaimer

This project is built solely by me with no affiliation with Toggl OÜ whatsoever.

It was developed as a response to company's decision to discontinue the native tracker app for Linux and is mostly driven by my allergy to browser extensions.

I started by patching the old c++ app (link to my fork that should work somehow) to work with the new API, but 100 KLOC is beyond my ability to comprehend in a few hours.

Features

Well, this is a time tracker. It supports creating, reading, updating and deleting time entries.

Here's what it can do:

  • Login: only with email and password.
  • Running entry: start; load; modify description, time and project; stop.
  • Previous entries: load; update description, time and project; delete.
  • Workspace: select active
  • Project: select default (not mandatory)

This app is built with iced framework.

Installation

NPM

This app is packaged on npm under umbrella package that should resolve itself for all supported platforms:

npm i -g @sterliakov/toggl-tracker

Cargo

This app is also published at crates.io, so you can build with cargo:

cargo install toggl-tracker

Or get a pre-built binary with amazing cargo-binstall:

cargo binstall toggl-tracker

Just get a binary

If you are fine with grabbing random binaries from the internet, just go to the [Releases] page, take the binary for your arch & platform and copy to whatever location is on your PATH. Here's an example:

wget https://github.com/sterliakov/toggl/releases/latest/download/toggl-tracker-x86_64-unknown-linux-gnu.tar.gz
tar xzf toggl-tracker-x86_64-unknown-linux-gnu.tar.gz
./toggl-tracker

Build from source

cd "$(mktemp -d)"
git clone https://github.com/sterliakov/toggl
cd toggl
cargo install --path .

TODO

A few more things would be nice to implement:

  • Login with SSO
  • Ability to minimize to tray

Reporting issues

Almost any feedback is welcome, with the only exception being UI "design". I don't care how stylish and lightweight the UI looks. It should work, and that's it. However, this does not include quality of life improvements: e.g. "this field is too small to read" or "text overflows here" aren't examples of unimportant design problems.

Please use GitHub issues to contact me about any problems you may have with this app.

Make sure to include your OS and relevant system details in your report.

I'm ready to accept pull requests. Make sure to explain what the PR is doing and why it is necessary, link to relevant issues if any. Try to include tests that prevent a similar regression in future.

Windows users note

If you're experiencing a bug on Windows that does not reproduce on other platforms, you're left on your own, sorry. I don't have a Windows machine by hand and don't want to acquire one. However, if you can fix the problem yourself, a PR is welcome!

Developers

Our pre-commit config assumes that the your system is configured to use nightly as default Rust. It is is not,

$ rustup default nightly