Displaying Data with Dashing

screen-shot-2015-01-16-at-5.58.10-am

I’ve been writing for a long time about the essential future skill of being able to collect and display data.

I break it into three steps:

  1. Harvesting data

  2. Manipulate data

  3. Display data

I’ve just started using Dashing to do the last part. The screenshot at the top shows one of the displays I made in a couple of minutes using this code for pulling air quality.

The most brilliant part of the project, however, is its ability to consume and display data in real time via POST.

curl -d '{ "auth_token": "YOUR_AUTH_TOKEN", 
"text": "Hey, Look what I can do!" }' 
http://localhost:3030/widgets/welcome

This command will instantly update the widget on the screen, which means you can do all sorts of web services calls, pull the JSON, and have the results get updated for you live

Here’s an example of a dashboard that uses it:

dashing

If you’re into data at all, this is one tool to get familiar with.

Notes

  1. You’ll also want to take a look at D3, which is a JavaScript-based graphing system.

Related posts: