2.0.0 • Published 6 years ago
simple-data-grapher v2.0.0
simple-data-grapher
Turns CSVs into graphs in a few simple steps; embeds onto other websites!
Quick Setup :
Installation Instructions:
- Clone this repository to your local environment.
git clone https://github.com/publiclab/simple-data-grapher - Run
npm installto install all the necessary packages required. - Open
examples/index.htmlin your browser to look at the preview of the library.
Instructions for a developer:
- Make the changes you are working on in respective /src files.
- After doing or while doing the changes run
npm run buildfor making the changes in thedist/. - Run
npm run testto run the tests. - Test your changes on a browser by opening
examples/index.html. - For finding linting issues run
npm run lint
We are using babel to transpile code into es5 and browserify to require different files and watch to watch the changes and build the changes.
For testing we are using mocha.