This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
Releases: vishalnagda1/redux-demo
Releases · vishalnagda1/redux-demo
Redux Demo
Redux Demo
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
- redux : Redux is a predictable state container for JavaScript apps.
- react-redux : Official React bindings for Redux.
- 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
JavaScript Fetch API Demo
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.