
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
InsightJS is a data aggregation and vizualization library for quickly analyzing datasets in Javascript.
InsightJS is a JavaScript data aggregation and visualization library that allows you to quickly load and find patterns in datasets. Given a data set, InsightJS can group the records across the dimensions of the data to quickly aggregate and provide statistics on the data.
Library changes:
Issues fixed:
value.propertyName.totalCount rather than value.propertyName.Totalvalue.propertyName.mean rather than value.propertyName.Averagevalue.propertyName.sum rather than value.propertyName.SumIssues fixed:
Library changes:
Issues fixed:
Using InsightJS requires the following libraries:
InsightJS is also compatible with RequireJS.
Include the required libraries and InsightJS.
Load a dataset and start analyzing and creating charts!
<link rel="stylesheet" href="insight.min.css">
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/crossfilter/1.3.7/crossfilter.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/insightjs/1.2.0/insight.min.js"></script>
d3.json('appstore.json', function(data)
{
var dataset = new insight.DataSet(data);
var genreGroup = dataset.group('genre', function(d)
{
return d.primaryGenreName;
});
var chart = new insight.Chart('AppGenres', '#chart')
.width(400)
.height(350)
.title('Genres');
var x = new insight.Axis('Genre', insight.scales.ordinal)
.tickLabelOrientation('tb');
var y = new insight.Axis('No. Apps', insight.scales.linear);
chart.yAxis(y);
chart.xAxis(x);
var columns = new insight.ColumnSeries('columns', genreGroup , x, y)
.valueFunction(function(d){
return d.value.Count;
});
chart.series([columns]);
chart.draw();
});
InsightJS is licensed under the MIT License
FAQs
InsightJS is a data aggregation and vizualization library for quickly analyzing datasets in Javascript.
We found that insightjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.