A visual debugging component for React
npm install react-dump
A visual debugging component for React.
Outputs any variable in an easy to read format based on ColdFusion's CFDUMP tag.
Better than console.log (recurses fully).
Less complex than React Developer Tools.
Sometimes visualizing a complex object makes it easier to think about.
For example, ``` might yield:
Inspired in part by Andrew Hewitt's nodedump
Install
-------
[sudo] npm install react-dump --save-dev
Usage
-----
Import to your component:
`import {Dump} from 'react-dump';`
Include within your component's render() method, passing the object and optional arguments
```
License
-------
MIT
Contributing
------------
Pull requests welcome with accompanying tests