d3-jsnext
Version:
d3, but futuristic
15 lines (10 loc) • 328 B
Markdown
# force-directed
Adapted from http://bl.ocks.org/mbostock/4062045. Open index.html to view. To rebuild bundle.js:
```bash
# install rollup and uglify-js globally, if you haven't already
npm install -g rollup uglify-js
# bundle
rollup -i main.js -o bundle.js -f iife
# minify
uglifyjs -c -m -o bundle.min.js -- bundle.js
```