Option to bypass token verification
There are situations in which a user would want to decode a JWT but not verify its authenticity. There should be an option to bypass token verification.
+1
@hendrix04 could this be related to https://github.com/auth0/express-jwt/pull/127 ?
From what I can tell, #127 allows a token to not be valid but this request is for an option to decode the token and act like it validated without actually validating it.
This would also make unit testing easier. I am having trouble mocking jwt({ secret: '...' }) middleware on controllers that require authentication.