d3node-output
d3node-output copied to clipboard
simple way to export d3-node instance to png/jpg, svg & html files
D3Node-output
Used in examples to export a d3node instance to html, svg, & png files
Install
npm install d3node-output
Usage
const output = require('d3node-output')
const voronoi = require('d3node-voronoi');
const data = new Array(99);
// crop your png to a custom size
// defaults to the size of your svg if not defined
const options = {width: 100, height: 200};
// output files to /dist dir
output('./dist/myVoronoi', voronoi(data), options, callback);
PaaS usage:
- Heroku: set buildpack to: https://github.com/mikeraimondi/heroku-buildpack-google-chrome
- AWS Lambda: tbd
- Azure functions: tbd
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D
LICENSE
MIT © d3-node