Build a live server metrics dashboard showing CPU, memory, and logs that runs over an SSH connection with no browser required.
Create a build or deploy progress monitor with a rolling log panel and a bar chart in the terminal.
Add a world map with live data markers to a Node.js CLI tool for visualizing distributed server locations.
Display gauges and donut charts in a terminal app to show queue depth and throughput at a glance.
blessed-contrib is a JavaScript library for building dashboards that run inside a terminal window, using nothing more than text characters and the colour codes terminals understand. The description is "build dashboards (or any other application) using ascii/ansi art and javascript". It is meant to be friendly to terminals, ssh sessions, and developers, another way of saying you can run a polished-looking dashboard on a remote server over a plain SSH connection, no browser required. It is built on top of blessed, an existing terminal-UI library for Node.js, and it adds higher-level dashboard widgets on top of blessed's basic text and list elements. The widget list in the README includes line charts, bar charts, stacked bar charts, a world map with markers, gauges and stacked gauges, donut charts, an LCD-style number display, rolling logs, pictures, sparklines, tables, trees, and markdown blocks. The usage pattern is consistent across widgets. You require blessed and blessed-contrib, create a screen, build a widget (for example, contrib.line(...) with some style options), append it to the screen, call setData on it, and then call screen.render(). The README also shows binding keys like q or Ctrl-C to exit cleanly. Layouts are optional but useful when arranging multiple widgets into a dashboard grid. You would use it for a live, refreshing status display, server utilisation, log tail, build progress, that runs in a terminal rather than a browser, when you are already working in Node.js. Installation is npm install blessed blessed-contrib on the latest Node.js LTS, and it works on Linux, OS X, and Windows. The full README is longer than what was provided.
← yaronn on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.