Skip to content

Latest commit

 

History

History
57 lines (31 loc) · 2.03 KB

README.md

File metadata and controls

57 lines (31 loc) · 2.03 KB

EP Showcase - Demo project for React, Redux, Redux Saga

Getting Started

  1. Clone this repo

https://github.com/EPShowcase/React_JS

  1. To run, go to project folder and run

$ npm install or $ yarn install (if you are using yarn)

  1. Now start dev server by running -

$ npm start or $ yarn start

  1. If the browser does not automatically for any reason visit - http://localhost:3000/

For more create-react-app commands refer package.json

Code structure

Components

Most of the generic layout is built in /src/App.js. The key thing to notice here is that we have included our one and only component to that file: namely <CounterComponent /> which has been imported from our /src/components folder. I recommend you keep all of your components there unless you feel need to move them elsewhere.

The Redux Store

The majority of the bootstrap code for the store is located in /src/store.js. By default, the Redux Devtools Extension is enabled so feel free to open that in Google Chrome to see what our Redux store looks like.

Note: You will only benefit from having this enabled if you install the Google Chrome Extension which can be found at the above Redux Devtools hyperlink.

Redux-Saga Integration

The logic for your reducers (aka Redux logic) will all be contained with /src/reducers/. The logic for your sagas (aka Redux-Saga) will all be contained in /src/sagas.

Understand that every action will go to a Reducer before going into any Saga.

Recommended Resources

Official Facebook Documentation on React

Official Redux Documentation

Official Redux-Saga Documentation

For any updates to the repo, please visit the changelog

Located here.

Something Missing or Incorrect?

File an issue here.