Skip to content

Latest commit

 

History

History
48 lines (28 loc) · 1.12 KB

README.md

File metadata and controls

48 lines (28 loc) · 1.12 KB

Benbria DashingClient

Sends stats to Dashing.

Contents

What it Does

DashingClient sends stats to Dashing, the exceptionally handsome dashboard framework.

In much the same way that you can send data from the command line using curl:

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

You can send data using DashingClient from your node.js program:

DashingClient = require('dashing-client');

dashing = new DashingClient("http://localhost:3030", "YOUR_AUTH_TOKEN");
dashing.send("welcome", {text: "Hey, look what I can do!"});

Note that you can also pass authentication credentials for basic_auth:

dashing.send("welcome", {text: "Hey, look what I can do!"},
  {username: "user", password: "secret"});

Installation

Install with:

npm install dashing-client

Or, add to your package.json

"dependencies": {
  "dashing-client": ">=0.0.1"
}