
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
highcharts-stream
Advanced tools
streaming interface to highcharts-browserify. stream.pipe(chart) === happy
streaming interface to highcharts-browserify. stream.pipe(chart) === happy
var through = require('through');
var chartStream = require('highcharts-stream');
var stream = through(function(xy){
this.queue(xy);
});
// add graph container.
var container = document.createElement('div');
document.body.appendChild(container);
stream.pipe(chartStream(container,{
pointLimit:20,// extra option only for highcharts-stream
//points will start to get shifted if more than point limit are added
}));
setInterval(function(){
stream.write([Date.now(),Math.floor(Math.random()*1000)]);
},1000);
you just have to add id or name to your points to update points already on the graph.
source.pipe(through(function(data){
this.queue({
name:data.id,
point:{
id:data.id', // if you add id this will update the point with that id with the new x and y value
x:data.time,
y:1
}
});
})).pipe(chart);
FAQs
streaming interface to highcharts-browserify. stream.pipe(chart) === happy
We found that highcharts-stream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.