
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.
sdmx-dashboard-react
Advanced tools
Embeddable React components to create a dashboard for SDMX data. The components are built using [Vite](https://vitejs.dev/).
Embeddable React components to create a dashboard for SDMX data. The components are built using Vite.
Project generated thanks to this great article: Create a Component Library Fast🚀(using Vite's library mode)
This library provides a set of components to build visuals for SDMX data.
Single React components are available SDMXChart, SDMXMap and SDMXValue to embed SDMX visuals in your application and can also be combined in a
SDMXDashboard component that generates a dashboard.
The single components are only configured via props, while the dashboard component can configured via a JSON configuration file.
More information on the syntax of the configuration can be found here
npm install sdmx-dashboard-react
import { SDMXDashboard } from 'sdmx-dashboard-react';
const App = () => {
return (
// SDMX dashboard component build from JSON configuration file
<SDMXDashboard
url='path/to/dashboard.json'
/>
// SDMX chart component built from props
<SDMXChart
config={{
data: ["https://stats-sdmx-disseminate.pacificdata.org/rest/data/SPC,DF_WBWGI,1.0/A..VA_EST?startPeriod=2010&dimensionAtObservation=AllDimensions"],
title: {
text: "World Bank Worldwide Governance Indicator",
},
subtitle: {
text: "Voice and Accountability"
},
id:"wgi_va",
type: "drilldown",
xAxisConcept:"TIME_PERIOD",
legend: {
concept: "GEO_PICT"
},
yAxisConcept: "OBS_VALUE"
}}
/>
);
};
npm install
npm run dev
The components are located in the lib folder where as the src folder hosts a demo application.
The vite preview mode can also be used to test the built library in the demo application.
npm run preview
npm run build
FAQs
Embeddable React components to create a dashboard for SDMX data. The components are built using [Vite](https://vitejs.dev/).
We found that sdmx-dashboard-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
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.