
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@lgv/beeswarm
Advanced tools
ES6 d3.js clustered circles along an axis visualization.
# install package
npm install @lgv/beeswarm
The following values are the expected input data structure; id can be omitted.
[
{
"label": "xyz",
"value": 1,
"x": 5,
"y": 2
},
{
"label": "abc",
"value": 3,
"x": 10,
"y": 8
}
]
import { Beeswarm } from "@lgv/beeswarm";
// have some data
let data = [
{
"label": "xyz",
"value": 1,
"x": 5,
"y": 2
},
{
"label": "abc",
"value": 3,
"x": 10,
"y": 8
}
];
// initialize
const b = new Beeswarm(data);
// render visualization
b.render(document.body);
The following values can be set via environment or passed into the class.
| Name | Type | Description |
|---|---|---|
LGV_HEIGHT | integer | height of artboard |
LGV_WIDTH | integer | width of artboard |
The following events are dispatched from the svg element. Hover events toggle a class named active on the element.
| Target | Name | Event |
|---|---|---|
| bubble circle | bubble-click | on click |
| bubble circle | bubble-mouseover | on hover |
| bubble circle | bubble-mousemout | on un-hover |
Style is expected to be addressed via css. Any style not met by the visualization module is expected to be added by the importing component.
| Class | Element |
|---|---|
lgv-bubble | circle element |
lgv-beeswarm | top-level svg element |
lgv-node | circle/text group element |
lgv-bubble-label | circle text label element |
lgv-bubble-label-partial | individual stacked lines of circle text label element |
# clone repository
git clone <repo_url>
# update directory context
cd beeswarm
# run docker container
docker run \
--rm \
-it \
-v $(pwd):/project \
-w /project \
-p 8080:8080 \
node \
bash
# FROM INSIDE RUNNING CONTAINER
# install module
npm install .
# run development server
npm run startdocker
# edit src/index.js
# add const b = new Beeswarm(data);
# add b.render(document.body);
# replace `data` with whatever data you want to develop with
# view visualization in browser at http://localhost:8080
FAQs
ES6 d3.js clustered circles along an axis visualization.
The npm package @lgv/beeswarm receives a total of 12 weekly downloads. As such, @lgv/beeswarm popularity was classified as not popular.
We found that @lgv/beeswarm demonstrated a healthy version release cadence and project activity because the last version was released less than 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.