Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 942 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 942 Bytes

Readable: A Content and Comment Web App

Leverage the strengths of Redux to build a "Readable" application where users can post text content and comment on each other's posts. This app was built from scratch while combining the state management features of Redux with the declarative component model from React. When complete, users can submit your posts, comment on existing posts, and edit and delete posts and comments.

How to run

To get started developing right away:

  • Install and start the API server

    • cd server
    • npm install
    • node server
  • In another terminal window, use Create React App to scaffold out the front-end

    • cd frontend
    • npm install
    • npm start

Built with:

  • React & Redux

This is the second project for Udacity's React Developer Nanoderee