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

awsdockermanager

v0.1.0

Published

ADM: a contained terminal dashboard for managing Docker containers on AWS hosts.

Downloads

20

Readme

ADM

CI

ADM is a contained terminal dashboard for managing Docker containers on an AWS host.

Type adm or ADM and it opens the live console. No browser. No web service.

Preview

 ADM LIVE | ip-172-31-22-10                         scan #42 | next 2.7s
All scanned containers look steady.

+ DOCKER --+ + RUNNING -+ + PROBLEM -+ + CPU LOAD + + MEMORY -+ + DISK ---+
| online   | | 4/5      | | 1        | | 38.2%    | | 61.4%    | | 72.1%  |
+----------+ +----------+ +----------+ +----------+ +----------+ +--------+

+ ADVICE ----------------------+ + CONTAINERS --------------------------------+
| Recent error logs found      | | NAME                   STATE        CPU  MEM FLAGS
|  Open logs in ADM for: api   | | api                    running      2%   22% log-error
|                              | | worker                 restarting   0%   8%  restart-loop
+------------------------------+ +--------------------------------------------+

+ SELECTED --------------------+ + OUTPUT ------------------------------------+
| name: worker                 | | Live scanner started. Press / for commands |
| status: Restarting (1)       | | or q to quit.                              |
+------------------------------+ +--------------------------------------------+

Install On AWS

git clone https://github.com/yetval/ADM.git
cd ADM
sudo ./scripts/install-aws.sh

The installer creates an isolated Python environment at /opt/adm, installs adm into it, and links adm and ADM into /usr/local/bin.

If Docker group permissions were changed during install, log out and back in before running ADM as your normal user. On a fresh EC2 install, this is usually required. You can also run newgrp docker in the current shell.

Install With npm

npm install -g awsdockermanager
adm

The npm package installs the adm and ADM commands. It requires Python 3.10+ and Docker on the host.

Upgrade an existing install:

ADM update

Use

Open the live terminal console:

adm

Run direct commands:

adm status
adm list
adm start <container>
adm stop <container>
adm restart <container>
adm logs <container>
adm inspect <container>
adm images
adm volumes
adm networks
adm prune
adm console
ADM update

Inside the terminal console:

  • / opens the command prompt.
  • r refreshes immediately.
  • j / k or arrow keys move through containers.
  • s starts the selected container.
  • x stops the selected container.
  • e restarts the selected container.
  • l shows logs for the selected container.
  • i inspects the selected container.
  • q quits.

Live Scanning

ADM scans continuously every three seconds and highlights:

  • Docker offline or unreachable.
  • Containers that are down or exited.
  • Non-zero container exit codes.
  • Unhealthy Docker healthchecks.
  • Restart loops.
  • OOM kills.
  • Docker state errors.
  • High container memory usage.
  • Recent log lines containing error, fatal, exception, traceback, panic, critical, permission denied, connection refused, or out-of-memory signals.
  • Host CPU, memory, and disk pressure.

Development

Run without installing:

python3 -m awsdockermanager.cli status
python3 -m awsdockermanager.cli

Run checks:

python3 -m compileall awsdockermanager tests
python3 -m unittest discover -s tests

Install locally:

python3 -m pip install -e .
adm

Security

ADM executes Docker operations as the current user. On AWS, run it as a trusted user with Docker permissions. Do not expose a shell running ADM to untrusted users.

License

MIT. See LICENSE.