After working with both redux and alt, I found redux more difficult to use, but providing specific advantages. Redux's reducers provide a consistent and scalable place for the data juggling logic that alt leaves unorganized in various data stores. In the long term, redux is more scalable because it has better separation of concerns.
Kabuki-motion is a starter project for publishing a single-page web app with web animators in mind. It creates both a react/flux development environment and live production server.
The react application comes pre-built with one-directional flux architecture and example components that make use of the React-Motion library.
The aim of this repo is to incorporate the best practices to building non-trivial apps with Reactjs v0.14 that include Heroku support.
Other boilerplates that include Heroku support also require the MongoDB addon, which is free now, but may not be in the future. This library does not require any Heroku addons.
| React + Redux + WebPack + Heroku |
http://kabuki.venicetexas.com/
- Heroku
- Node
- Express
- Webpack
- Babel
- Sass
- ESLint
- Uglifiy
- React v0.14
- Flux Architecture with Redux
- React-Motion for preformant animation
- install node.js
- in a new terminal window, run
git clone https://github.com/bishopZ/kabuki-motion.git cd kabuki-motionnpm installnpm run buildthis will build the files one timenpm startto run the server in development mode- Goto
http://localhost:5000in your browser
npm run watchto run webpack in watch mode- in a new terminal window, run
npm startto run the server in development mode - Goto
http://localhost:5000in your browser
Or run npm run production to run the server in production mode, without linting and source maps. The raw framework is about 250k, everything else is content.
- install the heroku toolbelt
heroku createheroku apps:rename newnamegit push heroku masterheroku open
/client contains the react files that construct the site. Run webpack while editing these files to see your changes live in the browser.
/client/App.jsx is the main point of entry for the React application.
/public contains the public, static resources served by the server, and the rendered application javascript and css files.
/server contains files related to the node server.
/server/app.js creates the node server.
/server/routes.js creates the node server's routing.
/server/view.ejs is the HTML view for the React single-page application.
- Any suggestions/improvements/comments/bugs can be in the form of a Pull Requests or Github issue.
- Coding guidelines:
react-motion - a spring that solves your animation problems
react-webpack-node - Alt, Immutable, React, Sass, Webpack, Node, MongoDB, Heroku
react-flux-starter - Flux, React, Less, Gulp, Node, Heroku
MIT
