
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.
grouped-graph
Advanced tools
Visualize dependencies between groups of components.
Check out an example source code dependency graph here.

The graph above is generated using example/data.json:
{
"rootNode": "layout",
"nodes": [
{
"name": "layout",
"children": [
{
"name": "layout/index.js",
"targets": [ "footer/index.js", "header/index.js" ]
}
]
}, {
"name": "footer",
"children": [
{
"name": "footer/index.js",
"targets": [ "footer/components/Footer.jsx" ]
}, {
"name": "footer/components/Footer.jsx",
"targets": [ "footer/components/FooterAnimation.jsx", "utils/clone.js" ]
}, {
Clicking a node displays the list of the components within that node and selects it.
Hovering over a node highlights the shortest path from the rootNode or selected node.
npm install --save grouped-graph
import groupedGraph from 'grouped-graph'
import data from './data.json'
const root = document.querySelector('.visualization')
const options = { width: 800, height: 800 }
const visualization = groupedGraph.createVisualization(data, options)
visualization.attach(root)
git clone git@github.com:noahsug/grouped-graph.git
cd grouped-graph
npm run start
npm run build:example -- --watch
FAQs
Nested graph visualization widget
We found that grouped-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
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.