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 🙏

© 2025 – Pkg Stats / Ryan Hefner

oriole

v1.0.3

Published

Make time fly.

Downloads

1

Readme

oriole

Make time fly 🐦

A CLI app that automatically creates a Harvest time entry out of your git commits. Made using Ink and Pastel.

Install

$ npm install -g oriole

Commands

oriole setup

Set up your Harvest account info on your local machine so that the other oriole commands can function properly.

This will ask you for your Harvest Personal Access Token and account ID (which you can find or create here), and save it to an encrypted JSON file using conf. Please refer to conf's README to find the default location of this file (it depends on your OS). If you're using macOS, it should be:

~/Library/Preferences/oriole-nodejs/orioleStore.json

If you're done using oriole, feel free to delete this file at any time. You'll just need to re-run oriole setup the next time you run a command.

oriole init

Initialize the current repo with a Harvest project ID and task ID. These IDs will then be used when running oriole push to create a Harvest timesheet entry.

If your current working directory is a valid git repository, this command will make a GET request to your Harvest account (using the token and account ID you provided in oriole setup) and show you a list of your available Harvest projects and their corresponding tasks.

Once you've selected a project and task, it will save those IDs to your encrypted conf store, and will be used when running oriole push. Essentially, this command links your current local git repo with a Harvest project/task.

oriole push

Additional arguments:

--hours, -h  Set the hours spent on this Harvest entry.    [number] [required]
--date, -d   Get the commits made on the specified date.              [string]

This is the main command for oriole. Using oriole push, you can create a timesheet entry out of the most recent git commit messages in your current repo (made either on the current day or on the specified date using --date). After confirmation, oriole will create a Harvest time entry using the previously-specified Harvest project/task, and POST it to your account.

In the event that the same project/task entry is already in your Harvest account on the day you specified (if, for example, you added it manually), oriole will ask whether you would like to replace that existing entry or create a new one. If there are multiple entries, choosing to replace will only replace the most recent entry.

oriole pto

Additional arguments:

--year, -y  The year for which you'd like to see the total number of PTO hours spent.	[number]

Run this command to have oriole calculate the total number of PTO hours spent in the current calendar year. It will only calculate the PTO hours spent for the Tivix internal Harvest project and task.

Optionally pass in a different year to get the total PTO hours for that year instead.

oriole --help

Shows the help text and the available commands.

Development

If you'd like to run the project locally, simply clone (or fork and clone) the repo and run npm install.

There are 2 available commands:

  • npm run dev - Start development mode and recompile on change
  • npm run build - Build a final distributable for npm