
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@msrvida/sanddance-react
Advanced tools
Visually explore, understand, and present your data.
Add these to the dependencies
section of your package.json
, then run npm install
:
"@msrvida/sanddance-react": "^4",
"react": "^17",
"react-dom": "^17",
"vega": "^5.25"
Import these in your JavaScript:
import * as vega from 'vega';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import * as SandDanceReact from '@msrvida/sanddance-react';
SandDanceReact.use(React, ReactDOM, vega);
const data = [
{ a: 1, b: "c1" },
{ a: 1, b: "c2" },
{ a: 2, b: "c3" },
{ a: 3, b: "c4" }
];
const insight = {
columns: {
x: "a",
color: "b",
},
scheme: "set1",
chart: "barchartV",
view: "2d",
size: {
height: 800,
width: 800
}
}
ReactDOM.render(
<SandDanceReact.Viewer
data={data}
insight={insight}
/>,
document.getElementById('app')
);
Please visit the SandDance website.
FAQs
SandDance visualization canvas React component
The npm package @msrvida/sanddance-react receives a total of 280 weekly downloads. As such, @msrvida/sanddance-react popularity was classified as not popular.
We found that @msrvida/sanddance-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.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.