
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
react-json-graph
Advanced tools
React Component for rendering graphs in JSON Graph Format
Demo: http://antonkalinin.github.io/react-json-graph/
Inspired by:
npm install --save react-json-graph
import Graph from 'react-json-graph';
<Graph
width={600}
height={400}
json={{nodes: [...], edges: [...]}}
onChange={(newGraphJSON) => {}}
/>
width: Number
(required) width of the graph
height: Number
(required) height of the graph, required
json: Object
graph representation in JSON with two keys: nodes
and edges
. See example below.
scale: Number
(default: 1) current scale of graph
minScale: Number
(default: 1) minimum value of scale, for now can not be less then 0.3
maxScale: Number
(default: 1) maximum value of scale, for now can not be greater then 1
style: Object
styles of graph (styles for nodes and edges will be added in future)
onChange: Function
calls when graph structure or node position has been changed, accepts new graph JSON as only parameter
{
nodes: [{
id: '0',
label: 'User',
position: {x: 150, y: 250},
},
{
id: '1',
label: 'Robot',
position: {x: 350, y: 350},
},
{
id: '2',
label: 'Frontend',
position: {x: 400, y: 150},
},
{
id: '3',
label: 'Backend',
position: {x: 700, y: 250},
},
{
id: '4',
label: 'DB',
position: {x: 1000, y: 300},
}],
edges: [
{source: '0', target: '2'},
{source: '1', target: '3'},
{source: '2', target: '3'},
{source: '3', target: '4'},
],
}
FAQs
React Component for rendering graphs in JSON Graph Format
The npm package react-json-graph receives a total of 22 weekly downloads. As such, react-json-graph popularity was classified as not popular.
We found that react-json-graph 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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.