Hacker News new | ask | show | jobs
by yaronn01 3680 days ago
so try https://github.com/yaronn/wopr
1 comments

That's interesting, but not very well-suited to real-time dashboards, is it? Seems to be for one-offs.
curling the markup is not for realtime. sometimes you can get away with curling in a loop with some sleep, and depending on the latency / scale you will get the same effect. however blessed-contrib can also be used as a server side component where clients curl for its endpoint (which is different than curling a static markup). that way it can return a live stream of data. you would use the same approach as https://github.com/yaronn/wopr/blob/master/server/server.js#... where your present method implementation will run in some loop / timeout and keep sending data (by calling screen.render).