Very basic React Yeoman generator with Browserify, Babel and Gulp
First, install Yeoman and generator-react-basic using npm (we assume you have pre-installed node.js).
npm install -g yo
npm install -g generator-react-basic
Then generate your new project:
mkdir project-name
cd project-name
yo react-basic
Then run the project:
gulp
Put your jsx into the src\app.jsx file. Any changes are watched, resulting in a compile, bundle and page refresh. Simple.
MIT © Sean Fitzgerald