https://github.com/victordibia/d3
I'm learning d3, this repo contains some d3 code I'm writing as I get along.
https://github.com/victordibia/d3
Last synced: 10 months ago
JSON representation
I'm learning d3, this repo contains some d3 code I'm writing as I get along.
- Host: GitHub
- URL: https://github.com/victordibia/d3
- Owner: victordibia
- Created: 2016-08-04T16:55:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-19T13:46:25.000Z (over 9 years ago)
- Last Synced: 2024-12-17T18:50:31.579Z (over 1 year ago)
- Language: JavaScript
- Size: 146 KB
- Stars: 7
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
D3 Version 4.x samples
===================
Rewriting some of the samples from Scott Murray's book on d3 visualizations using the d3 v4.0 api (there are a few changes that might not work with d3 v3.x).
Demo here:

Installation
================
This is a nodejs application. To install,
* Clone this repository
```
$ git clone https://github.com/victordibia/d3.git
```
* Navigate to your folder
```
cd d3
```
* Install dependencies
```
npm install
```
* Create `config.js`
```
module.exports = {
portnumber: 8080
};
```
* Run the app
```
node router.js
```
Acknowledgements
-------------------------------------------------
Important Libraries Used
- d3.js