
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.
@lgv/dendrogram
Advanced tools
ES6 d3.js dendrogram visualization.
Style is expected to be addressed via css. The top-level svg is assigned a class lgv-dendrogram. Any style not met by the visualization module is expected to be added by the importing component.
The following values can be set via environment or passed into the class.
| Name | Type | Description |
|---|---|---|
DIMENSION_HEIGHT | integer | height of artboard |
DIMENSION_WIDTH | integer | width of artboard |
PARSE_DELIMETER | string | separator on source data hierarchy path value |
# install package
npm install @lgv/dendrogram
The following values are the expected input data structure.
[
{
id: "some|path",
value: 1
},
{
id: "some",
value: 3
}
]
import { Dendrogram } from "@lgv/dendrogram";
// initialize
const dg = new Dendrogram(data);
// render visualization
dg.render(document.body);
FAQs
ES6 d3.js dendrogram visualization
We found that @lgv/dendrogram 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.