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

@uss-stargazer/job-queue

v0.0.5

Published

A CLI app to keep track of jobs/tasks built around a couple of JSON files.

Downloads

46

Readme

job-queue

The concept is modeling your todo-list as bite-sized jobs in a First-In, First-Out (FIFO) queue. The goal is to increase productivity.

  • Small jobs that do one thing at a time are more manageable, and make Git commits easier
  • Documenting todo in manageable fashion decreases liklihood of abandoning a project

Install

Can be installed system-wide if you have NodeJS installed:

npm install --global @uss-stargazer/job-queue

Then, you can use like:

job-queue --help
# or 
jobq --help

Usage

TLDR: The CLI tries to be user friendly, so just use it...

It's just based on a few files: config.json, jobqueue.json, and projectpool.json. Strives to be a bit like Git in the sense that it opens data structures in the user's editor for updating data.

JSON schemas

It's recommended that you use an editor or editor plugin with some sort of intellisense for JSON schemas, as it makes it much easier to work with.

If this isn't available, the expected structures can be found in the Zod schemas in src/data/$TARGET.ts (at the top of each).

Config options

  • editor: string to edit file when filepath is appended. If not specified, is infered from environment vars or from your Git configuration, if you have that installed.
  • confirmGistUpdates: whether it should check before pushing or pulling gists from GitHub, if you have any set up (see here).
  • confirmOffline: whether to check before going into offline mode when there are gists configured and github.com cannot be resolved.
  • showBanner: whether to show ASCII art banner on start

Syncing with gists

job-queue allows you to sync data files with a gist/gists on your GitHub account. This provides cloud storage and makes the program more portable.

To link to a gist, provide the gist ID and a GitHub access token in config.json, like:

{
  "$schema": "/job-queue/schemas/config.schema.json",
  "jobqueue": {
    "local": "/job-queue/jobqueue.json",
    "ghGistId": "00000000000000000000000000000000",
    "ghAccessToken": "ghp_000000000000000000000000000000000000"
  },
  "projectpool": {
    "local": "/job-queue/projectpool.json",
    "ghGistId": "00000000000000000000000000000000",
    "ghAccessToken": "ghp_000000000000000000000000000000000000"
  },
  "schemas": "/job-queue/schemas",
}

Your gist ID can be copied easily from the URL; usually something like https://gist.github.com/USERNAME/GIST_ID.

Sample Workflow

  • [Daemon] Spontaneous, not fleshed out ideas get immediately added to the project pool as "inactive".
  • You should generally have an idea of a few projects you want to focus on at a time. For each, push jobs to the jobqueue that do a single thing (ideally no more; they should be contained in a single Git commit).
  • Work (while you haven't finished the projects you're focusing on)
    • Go through job queue and remove jobs when complete (committing as you go).
    • [Daemon] While not on the terminal, think of next jobs, then push to queue.