An open API service indexing awesome lists of open source software.

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.

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:

![](/img/sc.jpg?raw=true)

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