npm install react-d3Caution: alpha state software. Chart APIs will change. Breaking changes will occur at each minor (0.x) release, until we reach version 1.0. At that point, we'll closely follow the semver specification.

First, install via npm:
npm install react-d3
Then, import into your ReactJS project:
var rd3 = require('react-d3');
The charts are then available under the rd3 namespace, which you can then use as shown on the demonstration page:
If you don't wish to pull in all the charts, you can also require single chart:
var BarChart = require('react-d3/barchart').BarChart;
```
var BarChart = rd3.BarChart;
var LineChart = rd3.LineChart;
var PieChart = rd3.PieChart;
var AreaChart = rd3.AreaChart;
var Treemap = rd3.Treemap;
var ScatterChart = rd3.ScatterChart;
var CandleStickChart = rd3.CandleStickChart;
For usage, please see here. API documentation is also coming online over the coming days.
Please note that this build should probably not be used in production, since it bundles all of react-d3's dependencies in a single bundle (this is also the cause of the "Cannot read property 'firstChild' of undefined" error message on the JS console, which occurs when there are two React libraries in the same namespace).
All the react-d3 charts are available in this JSFiddle fork under the global rd3 namespace.
* Chat: 
* Issues: react-d3 issues on Github
* Support: react-d3 Google Groups email list
With this approach, React itself is responsible for generating the SVG markup. d3.js is used for its tremendous collection of utility functions, such as those that calculate the path` value for various chart types.
* v0.5.0:
* Data frame animations
* Additional charts types:
- slopegraph
- table
* Tooltips
More at: ericbullington.com
Copyright (c) 2014-2015 Eric. S Bullington, Lim Yang Wei, and project contributors