Skip to content

maximesalomon/Redux-Counter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Redux Counter

Topics

  • Immutability in JavaScript
  • Redux
  • Actions
  • Reducers
  • The central store
  • Connecting React components to Redux

alt text

In this Project, you'll be eased into the code base of a small Redux application. The application itself is just a counter with increment and decrement buttons.

Counter Project

  • The increment button should increment the counter by 1.

  • Conversely, the decrement button should decrement the counter by 1. The aim of this project is to familiarize you with the overarching data flow pattern of Redux, as well as exposing you to how Redux is typically hooked up to a React application.

  • To run the project code, use the command yarn from the root directory to install your node_modules. Then yarn start. You'll see that the application isn't working.

  • There are a couple of spots in the application where you'll need to write the code to get the application functional.

  • These spots are in reducers/index.js, actions/index.js, and components/Counter.js.

The code is pretty heavily commented. This is to help clear up everything that is going on with the code you have been provided.

When it comes to setting up a Redux application and hooking it up to React components, there is a decent amount of boilerplate, but the benefits that Redux gives you when it comes to predictability and simplicity of your data flow are worth it - especially when your application scales out and becomes much larger!

Take your time walking around the code base. There are lots of informative little tidbits in the comments that you won't want to miss. I highly encourage you to look at every file first before trying to write any code.

If you end up finishing quickly, you'll see there are a few Stretch Problem prompts at the top of the Counter.js component file. Feel free to take a stab at implementing those. Or, you could take a look at the awesome Redux documentation here.

Good luck and have fun!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 64.9%
  • HTML 35.1%