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

bulwark-studio

v2.1.0

Published

AI-powered, self-hosted server management platform. Terminal, Docker, DB Studio, Git, Deploy, Security — one dashboard.

Downloads

89

Readme

 ____        _                      _
| __ ) _   _| |_      ____ _ _ __| | __
|  _ \| | | | \ \ /\ / / _` | '__| |/ /
| |_) | |_| | |\ V  V / (_| | |  |   <
|____/ \__,_|_| \_/\_/ \__,_|_|  |_|\_\

Bulwark

Your entire server, one dashboard.

License: AGPL-3.0 CI Release Node 18+ Docker GitHub Discussions PRs Welcome

Bulwark is an AI-powered, self-hosted server management platform that replaces your collection of DevOps tools with a single glass-themed dashboard. Terminal, database studio, Docker management, Git workflows, security scanning, and real-time monitoring — all in one place.

No vendor lock-in. No cloud dependency. Your server, your data, your AI subscription.


Features

  • Terminal — Full xterm.js terminal with node-pty, right in your browser
  • AI-Powered DB Studio — Supabase-style database management with Claude/Codex SQL generation, security audits, and backup strategy analysis
  • Docker Management — 27 native Docker Engine API endpoints, container lifecycle, logs, stats
  • Git + Deploy Pipeline — Commit, push, branch management, deployment with rollback
  • Security Scanning — Vulnerability scanning, SSL certificate management, credential vault (AES-256-GCM)
  • Real-time Monitoring — CPU, memory, disk, process list via Socket.IO (3s refresh)
  • Uptime Monitoring — HTTP/TCP health checks with history and alerting
  • RBAC + Audit Logging — Admin/editor/viewer roles, every API call logged
  • Cloudflare Integration — DNS and tunnel management
  • Calendar + Briefings — AI-powered scheduling and daily summaries
  • Multi-Server — Manage multiple servers from one dashboard
  • Cron, Files, Env Vars — Full server management without SSH

Quick Start

npm

git clone https://github.com/bulwark-studio/bulwark.git
cd bulwark
npm install
MONITOR_USER=admin MONITOR_PASS=changeme npm start
# Open http://localhost:3001

Docker Compose (recommended)

git clone https://github.com/bulwark-studio/bulwark.git
cd bulwark
docker compose up -d
# Open http://localhost:3001 (admin / admin)

Includes PostgreSQL 17, Docker socket access, and persistent volumes out of the box.

Docker (standalone)

docker build -t bulwark .
docker run -d -p 3001:3001 \
  -e MONITOR_USER=admin \
  -e MONITOR_PASS=changeme \
  -v /var/run/docker.sock:/var/run/docker.sock \
  bulwark

npx (try without installing)

npx @bulwark-studio/bulwark

One-Line Install (Linux)

curl -fsSL https://bulwark.studio/install.sh | bash

Architecture

graph TB
    Browser["Browser (Vanilla JS)"] -->|HTTP + WebSocket| Server["Express + Socket.IO :3001"]
    Server --> Routes["31 Route Modules"]
    Server --> Libs["13 Shared Libraries"]
    Routes --> PG["PostgreSQL 17"]
    Routes --> Docker["Docker Engine API"]
    Routes --> System["System (CPU/Mem/Disk)"]
    Routes --> AI["AI CLI (Claude/Codex)"]
    Libs --> Auth["PBKDF2 + TOTP 2FA"]
    Libs --> RBAC["RBAC + Audit"]
    Libs --> Vault["AES-256-GCM Vault"]
    Libs --> Cache["Neural Cache"]

Stack: Express.js + Socket.IO | Vanilla JS frontend (no build step) | PostgreSQL 17 | xterm.js + node-pty | Chart.js | CodeMirror 5

31 route modules | 13 libraries | 34 views | 267+ API endpoints | 4 npm dependencies


AI Integration (BYOK)

Bulwark uses a Bring Your Own Key model. You install the AI CLI tools on your server and authenticate with your own subscriptions. Zero AI cost for Bulwark.

| Provider | Command | Requirement | |----------|---------|-------------| | Claude CLI | claude --print | Anthropic subscription | | Codex CLI | codex | OpenAI API key | | None | — | AI features disabled |

Configure in Settings > AI Provider. Bulwark auto-detects installed CLIs.

AI-Powered Features

  • SQL generation from natural language
  • Database role security auditing with scoring
  • Backup strategy analysis with disaster recovery planning
  • Commit message generation
  • Daily briefing summaries

Screenshots

| | | |---|---| | SQL Editor | Docker | | SQL Editor — Syntax highlighting, AI query generation | Docker Fleet — Container management, log streaming | | Terminal | Tickets | | Terminal AI — Full PTY + natural language commands | Kanban Tickets — AI triage across 7 stages | | Tables | Roles | | Table Browser — Two-panel explorer with constraints | Roles — AI security audit, permission heatmap | | Metrics | Uptime | | Metrics — CPU/memory/disk gauges, AI analysis | Uptime — Health checks, response times, history | | Schema | Backups | | Schema — Functions, triggers, extensions, indexes | Backups — AI strategy, DR plan, health indicators |


Configuration

| Variable | Default | Description | |----------|---------|-------------| | MONITOR_PORT | 3001 | Server port | | MONITOR_USER | — | Default admin username (required on first run) | | MONITOR_PASS | — | Default admin password (required on first run) | | DATABASE_URL | — | PostgreSQL connection string | | VPS_DATABASE_URL | — | Secondary DB connection (optional) | | REPO_DIR | cwd | Repository root for Git/Deploy operations |

Create a .env file in the project root or set environment variables directly.


Theme: Dimension Dark

Bulwark features a glass-morphism dark theme with cyan/orange signal system:

  • Cyan (#22d3ee) — success, healthy, active, positive
  • Orange (#ff6b2b) — error, warning, destructive, down
  • Glass cards with backdrop-filter: blur() and border highlights
  • JetBrains Mono typography throughout

Documentation

Full docs at bulwark.studio/docs — installation, configuration, all 34 views, API reference, AI setup, and troubleshooting.

Comparison: Bulwark vs Portainer vs pgAdmin vs Uptime Kuma — see how Bulwark replaces multiple tools.


Star History


Contributing

See CONTRIBUTING.md for development setup, code style, and PR guidelines.


License

AGPL-3.0 — Free to use, modify, and self-host. If you offer Bulwark as a hosted service, you must open-source your modifications.


Built With

Express.js | Socket.IO | PostgreSQL | xterm.js | Chart.js | CodeMirror


Autopilot AI Tech LLC | bulwark.studio | @BulwarkStudio