streamlined3
v1.3.0
Published
A library to assist with creating dynamic visualizations for live data with D3
Downloads
10
Readme
Project is currently in development
StreamlineD3
Providing developers with a simple way to create live updating visualizations for their streaming data.
Features
- Customize colors, fonts, heights, widths, and more.
- A diffing algorithm renders only the data that changes for blazing fast performance.
- Load balancing through Node clusters lets your app scale to multiple streams and visualizations.
- Pre-built, ready to use visualizations including: Bar, Line, Scatter, Pie, Bubble, Word-Cloud, and World Map.
Getting Started
npm install --save streamlined3 express cluster net socket.io socket.io-redis path os
- create an index.js file
- create an index.html file
Index.js
NOTE: because our library uses load balancing through Node clusters on the back end to support scaling and optimal performance, it is important for you to NOT make a traditional server using Node or Express. The functionality is already set up for you and no worries, you can still customize it. Follow the instructions below for more info.
- In your index.js file require our library:
const streamline = require('streamlined3');
- Create a new instance, passing a callback and a port#:
let myStream = new streamline(sendFiles, port#);
note: please choose any port other than 6379 (as our Redis server will be running on this port)
- Put all the code/routes/etc. you would normally want in your server file inside this function:
function sendFiles(app) {
app.use(express.static(path.join(__dirname, 'client')));
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, 'client/home-page.html'));
});
}
Create an array
let myData = []
to hold your data. Call your API to get streaming data and push the results into your myData array. FYI, it is a good idea to buffer this data to not overload your system.Look at your API data key/value pairs and find the data values that you want to visualize in your graph. Put them inside a config object. (see Specific Configuration Settings for... below for what type of key/value pairs you'll need for each visualization):
let config = {
width: 500,
height: 500,
xdomain: 10,
ydomain: 10,
xticks: 10,
yticks: 10,
xScale: post
yScale: number-of-likes
xLabel: 'the name of the post',
yLabel: 'how many likes someone got'
};
- Invoke the StreamlineD3
connect
method on the new instance you created in step 2. For names of methods you can call, see Specific Configuration Settings for... below for each type of visualization.
myStream.connect((socket) => {
myStream.line(socket, myData, config);
});
Install Redis and Start Your Servers
Because sockets and Node clusters don't work well togther without additional measures taken, you must install Redis and start a Redis server. The easiest way is through HomeBrew. Download Homebrew https://brew.sh/ and then in the terminal $ brew install redis
. Once Redis is installed $redis-server
to start a Redis server. Lastly, type $ node index.js
or whatever you named your js file to start the initial Node server we set up for you in our library. Note: all these steps assume you are using a mac. If you're using windows, these Bash commands will not work.
HTML
- Add our library as a script by either using the CDN or choose the graph files you want and add them individually:
<script src="line.js"></script>
OR
<script src="http://cdn.jsdelivr.net/gh/StreamlineD3/[email protected]/client/graphs/bundle.min.js"></script>
- Add the dependencies: d3 (please ensure you are using version 4) and socket.io
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/1.7.3/socket.io.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.8.0/d3.min.js"></script>
- Add a
<div>
node with an id of(see Specific Configuration Settings for... below for what each visualization is called)
where you want your visualization to appear:<div id="Name-Of-Visualization"></div>
And voilà! You now have a working, live-updating visualization.
Specific Configuration Settings for the Bar Graph
- Method
myStream.connect((socket) => {
myStream.bar(socket, barData, barConfig);
});
- Config File
let barConfig = {
setWidth: 800,
setHeight: 400,
shiftYAxis: true,
xDomainUpper: 20,
xDomainLower: 0,
yDomainUpper: 50,
yDomainLower: 0,
xTicks: 10,
yTicks: 50,
xScale: 'Borough',
volume: 'Speed',
yLabel_text: 'Miles Per Hour',
label_text_size: 20,
transition_speed: 1000,
color: ['#DAF7A6', '#FFC300', '#FF5733', '#C70039', '#900C3F', '#581845'],
};
- Html
<div id="bar-graph"></div>
Specific Configuration Settings for the Line Graph
- Method
myStream.connect((socket) => {
myStream.line(socket, lineData, lineConfig);
});
- Config File
let lineConfig = {
setWidth: 600,
setHeight: 400,
shiftXAxis: true,
xDomainUpper: 50,
xDomainLower: 0,
yDomainUpper: 40,
yDomainLower: 0,
xTicks: 10,
yTicks: 10,
xScale: 'counter',
yScale: 'num_bikes_available',
xLabel_text: 'at the currently reporting station',
yLabel_text: 'number of available bikes'
};
- Html
<div id="line-chart"></div>
Specific Configuration Settings for the Bubble Graph
- Method
myStream.connect((socket) => {
myStream.bubbleGraph(socket, bubbleData, bubbleConfig);
});
- Config File
let bubbleConfig = {
setWidth: 600,
setHeight: 400,
text: 'station_id',
volume: 'num_bikes_available',
};
- Html
<div id="bubble-graph"></div>
Specific Configuration Settings for the Pie Chart
- Method
myStream.connect((socket) => {
myStream.pie(socket, pieData, pieConfig);
});
- Config File
let pieConfig = {
setWidth: 400,
setHeight: 400,
category: 'genre',//category to be show in pie slices
count: 'count'
};
- Html
<div id="pie-chart"></div>
Specific Configuration Settings for the Scatter
- Method
myStream.connect((socket) => {
myStream.scatter(socket, scatterData, scatterConfig);
});
- Config File
let scatterConfig = {
setWidth: 600,
setHeight: 400,
//axis
xDomainUpper: 1500,
xDomainLower: 0,
yDomainUpper: 20000,
yDomainLower: 0,
xTicks: 10,
yTicks: 10,
xLabel_text: 'Number of Followers',
yLabel_text: 'Number of Tweets',
label_font_size: 20,
xScale: 'followers_count',
yScale: 'statuses_count',
volume: 'favourites_count',
circle_text: '',
transition_speed: 5000,
};
- Html
<div id="scatter-plot"></div>