
Security News
NIST Officially Stops Enriching Most CVEs as Vulnerability Volume Skyrockets
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.
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
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.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.