New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@lgv/venn-diagram

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lgv/venn-diagram

ES6 d3.js venn diagram visualization

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
0
Created
Source

Venn Diagram

ES6 d3.js venn diagram visualization.

Install

# install package
npm install @lgv/venn-diagram

Data Format

The following values are the expected input data structure; id is optional.

[
    {
        "label": "xyz",
        "value": 1
    },
    {
        "label": "abc",
        "value": 3
    }
]

Use Module

import { VennDiagram } from "@lgv/venn-diagram";

// have some data
let data = [
    {
        "label": "xyz",
        "value": 1
    },
    {
        "label": "abc",
        "value": 3
    }
]

// initialize
const vd = new VennDiagram(data);

// render visualization
vd.render(document.body);

Environment Variables

The following values can be set via environment or passed into the class.

NameTypeDescription
LGV_HEIGHTintegerheight of artboard
LGV_WIDTHintegerwidth of artboard

Style

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.

ClassElement
lgv-venn-diagramtop-level svg element
lgv-nodevenn circle element
lgv-labelvenn text label element

Actively Develop

# clone repository
git clone <repo_url>

# update directory context
cd venn-diagram

# 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 example

# view visualization in browser at http://localhost:8080

Keywords

visualization

FAQs

Package last updated on 01 Dec 2024

Did you know?

Socket

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.

Install

Related posts