You must have already figured out the answers to all your previous questions using the previous responses from the other users, but I will try to clear things up a bit for others too:
1 - where does JWT tokens are stored when calling sign() ?
When you call sign, the signed token is not stored anywhere, it is
returned by the sign function, then you have to send it to the client
so that in can be stored on the client side. (e.g. session storage,
local storage or cookie)
2 - do i have to verify() the token everytime a protected url is called? if yes why?
Yes you do. The idea is once the client has the token, they will send
the token to the server each time they make a request. The token is
processed by the server to determine whether a particular client has
been authenticated already.
3 - When i set a new token for an already signed user does the old token (if exists) gets deleted ? What if the expiration is not setted up or is 5 years for example?
Slightly related to the answer on point 1. Calling the sign function
will just generate another token. The expiration of the token is
stored within the signed token itself. So each time the server gets a token
from the client, it checks the expiration as part of the token
verification. Its important to note that the signed token is just the
"user_profile" object that you passed in as a parameter during the
signing, plus extra fields like the expiration date which are added to
that object.
So a client can have multiple tokens stored on the client side. They
will all be valid as long as they have not yet expired. However, the
idea is to only send a token to the client when they have been
authenticated again after the old one has expired.
4 - Why i can't set new tokens on same browser/app page ? I get invalid signature error if i register a new token but the token matches (i checked) It's like i can't signin more than 1 user on same browser
The idea is to have 1 user per browser. Since in this case the browser
is the client. I cannot think of use cases where you would need to
have multiple users per browser/client so you were obviously doing
something wrong. That's not to say its impossible to send multiple
tokens to the same browser/client.