Skip to content
This repository has been archived by the owner on Jul 7, 2021. It is now read-only.

Releases: vishalnagda1/redux-demo

Redux Demo

10 May 19:19
Compare
Choose a tag to compare

Redux Demo

Repository version

Redux Demo is a React application to demonstrate the implementation of Redux library in a React application. This application performs the basic functionality of fetching posts and creating new post, and stores the data in application level state.

This application is using open source APIs provided by JSONPlaceholder to create and retrieve the posts.

Dependencies
  1. redux : Redux is a predictable state container for JavaScript apps.
  2. react-redux : Official React bindings for Redux.
  3. redux-thunk : Thunk middleware for Redux.
Future Plan
  • Upgrade the code and make use of static getDerivedStateFromProps instead of UNSAFE_componentWillReceiveProps component lifecycle. Read more...
  • Disable the form submit button until the request is not completed.

JavaScript Fetch API Demo

10 May 10:55
Compare
Choose a tag to compare
Pre-release

JavaScript Fetch API Demo

Repository version

This is a pre-release version of Redux Demo React application before implementation of Redux functionality. This application performs the basic functionality of fetching posts and creating new post using JavaScript fetch API. This application is using open source API provided by JSONPlaceholder to create and retrieve the posts.