JWTs, or JSON Web Tokens, are a compact and self-contained way to represent information between two parties. They are commonly used for authentication and information exchange in web applications.
JWTs are Stateless: JWTs contain all the information needed to authenticate a request, so the server doesn’t need to store session data. All the data
is stored in the token itself.