Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 830 Bytes

README.md

File metadata and controls

34 lines (28 loc) · 830 Bytes

Redux Twitter Clone

This project is to help understand the redux patterns along with react. This repo is a code-along in the React Nanodegree program.

Project Setup

  • clone the Project - git@github.com:udacity/reactnd-chirper-app.git
  • install the dependencies - npm install

Expected outcomes

  • Manage state more predictably
  • Master Redux Concepts
    • Store
    • Actions
    • Reducers
    • Dispatchers
  • Write real-world code using react and redux
  • Write Async Action creators to fetch data from API
  • Use Middlewares to extend redux by adding custom functionality.

Folder Structure

  • Components
    • component1.js
    • component2.js
    • component3.js
  • Actions
    • action1.js
    • action2.js
  • Reducers
    • reducer1.js
  • Util
  • Store