No description
Find a file
John Kapantzakis 5149929305
Some checks failed
/ deploy (18.18) (push) Has been cancelled
tests / tests (push) Has been cancelled
v6.6.12 (#201)
2026-01-14 14:13:19 +02:00
.github/workflows Fix action. 2025-06-19 10:20:09 +03:00
.storybook Update storybook configuration after upgrading package. 2025-09-04 16:59:16 +03:00
fixtures Fix tests. 2025-07-23 13:49:32 +03:00
jest Fix tests. 2025-07-23 13:49:32 +03:00
out8553 Added gh pages deployment. (#17) 2021-09-16 17:08:19 +03:00
src Add forcePlay attribute (#200) 2026-01-14 14:11:26 +02:00
.gitignore Annotations (#194) 2025-06-16 16:58:14 +03:00
.prettierrc.js Scaffolded the project. 2021-04-27 19:30:16 +03:00
babel.config.js Add compare expanded tab. Increase coverage. 2025-06-23 14:19:32 +03:00
eslint.config.js Upgrade all (#192) 2025-04-02 13:39:37 +03:00
jsconfig.json Data v2 (#169) 2023-05-08 14:39:14 +03:00
LICENSE Initial commit 2021-04-27 13:06:44 +03:00
package.json v6.6.12 (#201) 2026-01-14 14:13:19 +02:00
README.md Added gh pages deployment. (#17) 2021-09-16 17:08:19 +03:00
yarn.lock Upgrade packages. 2025-09-04 16:58:52 +03:00

Netdata frontend SDK and chart utilities

Storybook

https://netdata.github.io/charts

Install

npm:

  $ npm install @netdata/charts

yarn:

  $ yarn add @netdata/charts

Develop

  $ yarn start

Build

There are 3 different distributions. The following command creates the different distributions in the ./dist folder

  $ yarn build

Build the distributions isolated

UMD produces a single file ./dist/sdk.min.js what contains the entire bundle

  $ yarn build:umd

ES6 Builds the files using ES Modules in ./dist/es6/* folder

  $ yarn build:es6

cjs Builds the files using CommonJS in ./dist/* folder

  $ yarn build:cjs

Testing

  $ yarn test

Lint

  $ yarn lint