I am building a React-redux spa and i am using an API built on node + express + jwt-simplea module and passport.js
When the user logs in with username/password, the server validates those credentials and sends the client back a JSON web token that they must then send along with every API request. So the React-redux app must store this token.
How do I securely store this client token in the React-redux app? Which plan to work with web tokens I must follow, and how best to implement user authentication on the client with react-redux.
Thanks for any help )