Get Started
Installation
Get started by downloading the core ad3lie
library package through Github:
Then, head over to our site ad3lie to get your system-specific tool version (currently supporting Mac, Windows, and Linux).
Install Using the CLI
To start:
Install the core ad3lie package:
npm i ad3lie
Or, pick and choose a specific package (mix and match!):
npm i @ad3lie/bar
Before use, make sure to
npm i
all dependencies required in thepackage.json
// package.json{ "dependencies": { ... },}
- Then, fire up your application! Run
npm run start
to start.
Using ad3lie in your project
To use the entire library, simply put at the top of your file:
import * as ad3lie from 'ad3lie'
Or, simply use what you need:
import { BarChart } from 'ad3lie'
ad3lie
is largely unopinionated, so you choose what you want or don't
want.
ad3lie
is a lightweight, reusable component library. Feel free to mix and
match your chart packages, or use only what you need.
Install specific
charts with @ad3lie/***
, or use @ad3lies
to install the complete
library.