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

bitbar-docker-ps

v1.2.0

Published

Docker PS for your BitBar

Readme

bitbar-docker-ps


Features

  • [X] Number of containers running on your Mac status bar
  • [X] Container names, image, ID, and uptime
  • [X] Exposed ports and their host mapping
  • [X] Named volumes and bound volumes
  • [X] Logs, inspect, restart, and kill
  • [X] Refreshes every 10 seconds

Installation

Requires Docker, for obvious reasons.

Requires Node. So far, only tested with version 10.10.

Go to your BitBar plugin directory:

$ cd "$(defaults read com.matryer.BitBar pluginsDirectory)"

Clone the plugin into your BitBar plugin directory:

$ git clone https://github.com/colbin8r/bitbar-docker-ps

Install dependencies:

$ cd bitbar-docker-ps
$ npm i

Activate the plugin with a symlink:

$ cd ..
$ ln -s bitbar-docker-ps/dockerps.10s.js

Refresh your BitBar to verify everything works!

Changing the update interval

By default, the plugin refreshes every 10 seconds. You can always open the dropdown and manually refresh it if you like.

The update interval is encoded in the name of the file in the BitBar plugins directory. To change it, just change the name of the symlink:

$ cd "$(defaults read com.matryer.BitBar pluginsDirectory)"
$ mv dockerps.10s.js dockerps.1m.js # Change to 1 minute

Uninstalling

Remove the symlink and plugin folder:

$ cd "$(defaults read com.matryer.BitBar pluginsDirectory)"
$ rm dockerps.10s.js
$ rm -rf bitbar-docker-ps

Status Bar Circle

Solid Green: bitbar-docker-ps connected to Docker on your machine and is listing your running containers! :100:

Hollow Green Circle: bitbar-docker-ps connected to Docker on your machine, but there aren't any containers running.

Red Circle: bitbar-docker-ps couldn't connect to Docker on your machine. Open the dropdown to see error information.