Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@graspologic/react
Advanced tools
Contains the react bindings for the graspologic-js renderer.
import React from 'react'
import { GraphView, Edges } from '@graspologic/react'
// Simple graph dataset
const GRAPH_DATA = {
nodes: [
{
id: 'A',
x: -10,
y: 10,
z: 0,
radius: 5,
// Format 0xBBGGRR
color: 0x00ff00,
},
{
id: 'B',
x: 10,
y: 10,
z: 0,
radius: 5,
// Format 0xBBGGRR
color: 0xff0000,
},
],
edges: [
{
source: 'A',
target: 'B',
weight: 1,
},
],
}
export default () => {
return (
<GraphView style={{ width: 200, height: 200 }} data={GRAPH_DATA}>
{/* Not necessary, but allows you to customize how edges are laid out */}
<Edges minWidth={5} maxWidth={5} alpha={1} />
</GraphView>
)
}
import React, { useState, useCallback, useMemo } from 'react'
import {
Axes,
GraphView,
Camera,
HighlightHoveredNode,
HandleNodeClicks,
NodeSetHighlight,
Edges,
Nodes,
} from '@graspologic/react'
import {
SettingsPane,
DisplaySettings,
EdgeSettings,
NodeSettings,
} from '@graspologic/render-controls-react'
export default () => {
const data = useMemo(() => getMyGraphData(), [])
// A function which takes a "group" property from a node and returns a color
const categoricalColorizer = useMemo(() => createColorizer(), [])
const [nodeIds, setNodeIds] = useState<string[]>([])
const handleVertexClick = useCallback(
(id: string | undefined) => {
console.log('click', id)
if (id) {
if (nodeIds.indexOf(id) === -1) {
setNodeIds([...nodeIds, id])
} else {
setNodeIds(nodeIds.filter(v => v !== id))
}
}
},
[nodeIds, setNodeIds],
)
return (
<GraphView style={{ width: 600, height: 300 }} data={data} colorizer={categoricalColorizer}>
{ /* Displays a set of Axes on the graph */}
<Axes />
{ /* Enables controlling of certain aspects of the camera */}
<Camera interactive />
{ /* Enables highlighting of the node that is being hovered over */}
<HighlightHoveredNode />
{ /* Enables handling of node click events */}
<HandleNodeClicks onClick={handleVertexClick} />
{/* Highlights the given set of node ids */}
<NodeSetHighlight vertexIds={nodeIds} />
{ /* Controls rendering of edges */ }
<Edges minWidth={5} maxWidth={5} alpha={1}/>
{ /* Controls rendering of nodes */ }
<Nodes minRadius={5} maxRadius={5} />
{/* Adds a settings pane that allows the user to configure the graph renderer on the fly */}
<SettingsPane>
{/* Adds a display settings section to the settings pane */}
<DisplaySettings />
{/* Adds a node settings section to the settings pane */}
<NodeSettings />
{/* Adds a edge settings section to the settings pane */}
<EdgeSettings />
</SettingsPane>
</GraphView>
)
}
See the API documentation or examples for additional examples.
FAQs
Graph Dataviz for React
The npm package @graspologic/react receives a total of 20 weekly downloads. As such, @graspologic/react popularity was classified as not popular.
We found that @graspologic/react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.