Skip to content

mediafinance/dashing-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"
}

About

Client for sending data to Dashing from node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published