Note: this project has been deprecated.
Long story short; only use Redux if you have a good reason to! There are plenty of good articles online about this (check out this one by the creator of Redux), and feel free to check out my other project jsfactory for generating modern JS apps.
This provides basic core structure for a react/redux Javascript app. The base app simply includes a counter that can be incremented as an example of functionality.
Run from project root:
yarn
ornpm i
.yarn build
ornpm run build
.http-server public/
or your equivalent to create a local server for your app.
Run yarn build
or npm run build
.
Run yarn watch
or npm run watch
. This will automatically watch for changes and rebuild when it finds a change.
Run yarn test
or npm run test
to run a JavaScript Standard Style check. Note this is automatically run when watch
detects changes.