JSON Web Tokens are structured like this:
Header.Payload.Signature
Each of these three parts (separated by dots) are Base64 encoded. This means they are not encrypted and can be easily read by anyone just by decoding it.
Header
The first part of the token...
You can have redux-saga listen in on event sources other than the Redux Store. The default nature of redux-saga is pull based. We need to write a saga that is push based, so that the external event listener like an API can push updates to...
There are only 4 different events that can trigger React component lifecycle methods:
When a Component Mounts
A component will only mount once during its lifecycle. The following 2 methods are only called once in the component's lifecycle alongside the component's render():
* componentWillMount()
* render()
* componentDidMount(...