Here’s a flowchart to make you happy again!
Based on and inspired by https://github.com/petehunt/react-howto
-
If you are confused by the React ecosystem and don’t know where to start, read Pete Hunt’s react-howto guide.
-
If you are using a Flux library (or Redux) and it adds a lot of boilerplate for no obvious gain, remove it and learn state management in vanilla React with the official Thinking in React guide.
-
If you don’t feel comfortable using ES2015 features (e.g. classes and fat arrows) and you feel like updating your JavaScript knowledge, Understanding ECMAScript 6 is an amazing guide. Use Babel to verify your assumptions.
-
If you are just learning React, and a JavaScript bundler like Webpack confuses you, copy jarsbe/react-simple and start hacking with no build step.
-
After you’ve learned React itself you can begin learning good deployment practices such as using JavaScript bundlers. Use Google Page Speed to assess how well your app delivers the client code.
- Edit the
.dot
file with https://atom.io/packages/graphviz-preview - Install
dot
from http://www.graphviz.org/Download.php - Install
dot
, a part of Graphviz.
- On OSX with Homebrew, merely do
brew install graphviz
. - Otherwise, it's probably in your OS's package repositories as simply
graphviz
. - You can also get an installer from the Graphviz downloads page.
- Generate the
.svg
withdot -Tsvg fatigue.dot > fatigue.svg
- Send a PR!