Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NodeJs how to display table structured dashboard in console

Tags:

linux

node.js

How can I create a dashboard looking display in the console through nodejs?

For example BFGMiner has a great looking structured UI:

enter image description here

like image 337
Andrew Avatar asked Apr 16 '15 01:04

Andrew


People also ask

Where is node JS log file?

Answer. Note: Node. js can also records logs directly into /var/www/vhosts/system/example.com/logs/ directory, but this functionality is a part of Passenger Enterprise which is not included into the free edition that is provided by Plesk.

What is logger in Nodejs?

Node. js logging is an important part of supporting the complete application life cycle. From creation to debugging to planning new features, logs support us all the way. By analyzing the data in the logs, we can glean insights, resolve bugs much quicker, and detect problems early and as they happen.


2 Answers

I would use https://github.com/yaronn/blessed-contrib it comes with a lot of widgets built-in.

like image 69
Furqan Zafar Avatar answered Sep 22 '22 00:09

Furqan Zafar


I personally use cli-table, it works well

cli-table

like image 35
Tristan Foureur Avatar answered Sep 18 '22 00:09

Tristan Foureur