Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
AC-D3 is a Javascript Library for building Audiovisual Charts in D3.
$ npm install ac-d3 --save
<div id='vis'></div>
<script type="text/javascript" src="https://www.youtube.com/iframe_api"></script>
<script type="text/javascript" src="https://player.vimeo.com/api/player.js"></script>
<script type="text/javascript" src="https://d3js.org/d3.v4.min.js"></script>
const acd3 = require('ac-d3');
Key | Value datatype | Note |
---|---|---|
src | string | Accepts paths to HTML5 supported file types and vimeo and youtube embedded url links. |
scalingParameter | number | Used to determine the relative size of each bubble. |
v_id | string | Must be unique for each video. Can't be a string of a number ('21'). |
type | string | Either 'video' (for direct URL path), 'vimeo', or 'youtube'. |
const data = {
"children": [
{
"src": 'https://www.youtube.com/embed/F-eMt3SrfFU',
"scalingParameter": 36,
"v_id": "vid1",
"type": "youtube"
},
{
"src": "https://player.vimeo.com/video/12868296?",
"scalingParameter": 12,
"v_id": "vid4",
"type": "vimeo"
},
{
"src": "http://upload.wikimedia.org/wikipedia/commons/7/79/Big_Buck_Bunny_small.ogv",
"scalingParameter": 24,
"v_id": "vid6",
"type": "video"
}]
}
Key | Value datatype | Note |
---|---|---|
htmlAnchorID | string | ID of the div where AC-D3 will append the visualization |
diameter | number | Overall diameter of the visualization |
zoom | number | Zoom level of each of the videos |
resolutionThresholds | array | This sets the bounds for which video resolution to use depending on height of the video (in pixels) |
const config = {
htmlAnchorID: 'vis',
diameter: 600,
zoom: 1.5,
resolutionThresholds: [250, 500],
}
const randomChart = new acd3(data, config);
randomChart.createBubbleChart();
Coming soon...
FAQs
Audiovisual Charts built with D3
The npm package ac-d3 receives a total of 5 weekly downloads. As such, ac-d3 popularity was classified as not popular.
We found that ac-d3 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.