Points component for XY axis for chrt (can be used for scatterplots)
npm install
npm build
If you want to develop and see the changes reloaded live into another app you can use the watch script
npm run watch
You can use the chrt-dotplot-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-dotplot-VERSION.tgz SOMEWHERE
cd myproject
npm install SOMEWHERE/chrt-dotplot-VERSION.tgz
You can create a package for testing with
npm pack
This command will create a file called chrt-dotplot-VERSION.tgz
in the root folder of chrt.
npm link
This creates chrt
module inside your global node_modules
so that you can import it.
npm link chrt
This will create a sym link to the module created in your global.
After having installed or sym-linked the node you can use it as usual
import { chrtDotPlot } from 'chrt-dotplot';
Run npm run test
to run all the tests on the code with Jest.
npm run test
To run only one test:
npx jest test/scales/scaleLinear.test.js