Is it possible to validate the JWT token in a reactjs frontend application or does it require server side node/other framework to validate the signature?
From what I understand the JWT token has a signature portion that has to be validated against a secret key. So for this to happen security you require this part of the validation to be perform on the server side/backend.
Is this correct?