Json-Web-Token with React

This is a JWT demo I created when I was trying to test JWT with Express.

The demo cares about authentication as well as authorization as it checks whether a user is an admin or not, and if he/she is admin then he can delete all users.

I used Axios Interceptors to manipulate the request before it gets sent to our Express API like checking if the token is expired or still valid.

The Frontend part contains two instances of Axios, one for logging in, and the other one is connected to the Interceptors to be generated when the old token is expired and it should return back a new access token.

Technologies: