0.0.165 • Published 3 months ago

chrt v0.0.165

Weekly downloads
239
License
MIT
Repository
github
Last release
3 months ago

chrt

Chrt is a free, open source JavaScript library with the goal of creating a more spontaneous experience to make charts. Coding with chrt should be as simple as snapping together building blocks, where each block is an element of the chart.

chrt is still a WORK IN PROGRESS, for better support and documentation, please come back in few months after we will announce the first beta version. For more info mail to sayhi@chrt.io

Resources

How to install

Use in vanilla HTML

In vanilla HTML, you can load chrt from a CDN such as jsDelivr or you can download it locally. The following examples show how use chrt in your HTML page:

ESM+CDN

<!DOCTYPE html>
<div id="container"></div>
<script type="module">
    import * as chrt from 'https://cdn.jsdelivr.net/npm/chrt/+esm';

    chrt.Chrt()
        .add(chrt.line().data([3, 2, 5, 1, 2, 4, 5]))
        .node(document.getElementById('container'));
</script>

UMD+CDN

<!DOCTYPE html>
<div id="container"></div>
<script src="https://cdn.jsdelivr.net/npm/chrt@latest"></script>
<script type="module">

chrt.Chrt()
  .add(chrt.line().data([3,2,5,1,2,4,5]))
  .node(document.getElementById("container"))

</script>

UMD+Local

<!DOCTYPE html>
<div id="container"></div>
<script src="chrt.js"></script>
<script type="module">

chrt.Chrt()
  .add(chrt.line().data([3,2,5,1,2,4,5]))
  .node(document.getElementById("container"))

</script>

Install from npm

If you’re developing a web application using Node, you can install chrt via yarn, npm, or your preferred package manager.

npm install chrt

After the installation, you can use it as:

import * as chrt from 'chrt';

Examples

The easiest way to get started with chrt is to explore the chrt examples in Observable, where you can fork the code and experiment.

How to build

Install the dependencies

npm install

Build the package

npm build

Developing

If you want to develop and see the changes reloaded live into another app you can use the watch script

npm run watch

Use it as a module

Method 1 - tgz package

Use the tgz provided in the repository

You can use the chrt-VERSION.tgz package. The following commands will expand the chrt module in the node_modules folder of your project. Ready to be used with the usual import command:

cp chrt-VERSION.tgz SOMEWHERE
cd myproject
npm install SOMEWHERE/chrt-VERSION.tgz

Create a tgz npm package

You can create a package for testing with

npm pack

This command will create a file called chrt-VERSION.tgz in the root folder of chrt.

Method 2 - symlinked package

Create a global node module

npm link

This creates chrt module inside your global node_modules so that you can import it with import {chrtLine} from 'chrt';

Use the module in a different app

npm link chrt

This will create a sym link to the module created in your global.

Use it in your code

After having installed or sym-linked the node you can use it as usual

import * as chrt from 'chrt';

Testing

Unit test with Jest

Each submodule of chrt can be tested via Jest:

npm run test
0.0.165

3 months ago

0.0.164

3 months ago

0.0.163

3 months ago

0.0.162

4 months ago

0.0.161

4 months ago

0.0.160

4 months ago

0.0.159

5 months ago

0.0.158

5 months ago

0.0.157

5 months ago

0.0.156

5 months ago

0.0.155

1 year ago

0.0.154

2 years ago

0.0.153

2 years ago

0.0.152

2 years ago

0.0.151

2 years ago

0.0.150

2 years ago

0.0.149

2 years ago

0.0.148

2 years ago

0.0.128

2 years ago

0.0.127

2 years ago

0.0.126

2 years ago

0.0.125

2 years ago

0.0.129

2 years ago

0.0.124

2 years ago

0.0.123

2 years ago

0.0.122

2 years ago

0.0.121

2 years ago

0.0.139

2 years ago

0.0.138

2 years ago

0.0.137

2 years ago

0.0.136

2 years ago

0.0.131

2 years ago

0.0.130

2 years ago

0.0.135

2 years ago

0.0.134

2 years ago

0.0.133

2 years ago

0.0.132

2 years ago

0.0.147

2 years ago

0.0.142

2 years ago

0.0.141

2 years ago

0.0.140

2 years ago

0.0.146

2 years ago

0.0.145

2 years ago

0.0.144

2 years ago

0.0.143

2 years ago

0.0.117

3 years ago

0.0.116

3 years ago

0.0.115

3 years ago

0.0.119

3 years ago

0.0.118

3 years ago

0.0.120

3 years ago

0.0.114

3 years ago

0.0.113

3 years ago

0.0.112

3 years ago

0.0.111

3 years ago

0.0.109

3 years ago

0.0.110

3 years ago

0.0.106

3 years ago

0.0.108

3 years ago

0.0.107

3 years ago

0.0.105

3 years ago

0.0.104

3 years ago

0.0.103

3 years ago

0.0.102

3 years ago

0.0.101

3 years ago

0.0.100

3 years ago

0.0.98

3 years ago

0.0.99

3 years ago

0.0.96

3 years ago

0.0.97

3 years ago

0.0.95

3 years ago

0.0.93

3 years ago

0.0.94

3 years ago

0.0.90

3 years ago

0.0.91

3 years ago

0.0.92

3 years ago

0.0.86

3 years ago

0.0.87

3 years ago

0.0.88

3 years ago

0.0.89

3 years ago

0.0.84

3 years ago

0.0.85

3 years ago

0.0.82

3 years ago

0.0.83

3 years ago

0.0.81

3 years ago

0.0.80

3 years ago

0.0.79

3 years ago

0.0.76

3 years ago

0.0.77

3 years ago

0.0.78

3 years ago

0.0.75

3 years ago

0.0.74

3 years ago

0.0.73

3 years ago

0.0.71

3 years ago

0.0.72

3 years ago

0.0.70

3 years ago

0.0.69

3 years ago

0.0.62

3 years ago

0.0.63

3 years ago

0.0.64

3 years ago

0.0.65

3 years ago

0.0.66

3 years ago

0.0.67

3 years ago

0.0.68

3 years ago

0.0.60

3 years ago

0.0.61

3 years ago

0.0.59

3 years ago

0.0.57

3 years ago

0.0.58

3 years ago

0.0.46

3 years ago

0.0.47

3 years ago

0.0.51

3 years ago

0.0.52

3 years ago

0.0.53

3 years ago

0.0.54

3 years ago

0.0.55

3 years ago

0.0.56

3 years ago

0.0.50

3 years ago

0.0.48

3 years ago

0.0.49

3 years ago

0.0.45

3 years ago

0.0.42

3 years ago

0.0.43

3 years ago

0.0.44

3 years ago

0.0.40

3 years ago

0.0.41

3 years ago

0.0.38

3 years ago

0.0.39

3 years ago

0.0.37

3 years ago

0.0.36

3 years ago

0.0.33

3 years ago

0.0.34

3 years ago

0.0.35

3 years ago

0.0.32

3 years ago

0.0.31

3 years ago

0.0.30

3 years ago

0.0.28

3 years ago

0.0.29

3 years ago

0.0.27

3 years ago

0.0.26

3 years ago

0.0.25

3 years ago

0.0.24

3 years ago

0.0.23

3 years ago

0.0.22

3 years ago

0.0.21

3 years ago

0.0.20

3 years ago

0.0.19

3 years ago

0.0.17

3 years ago

0.0.18

3 years ago

0.0.16

3 years ago

0.0.15

3 years ago

0.0.14

3 years ago

0.0.13

3 years ago

0.0.12

3 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

4 years ago

0.0.1

4 years ago