I dont want my token to get expire and shold be valid forever.
var token = jwt.sign({email_id:'123@gmail.com'}, "Stack", {
expiresIn: '24h' // expires in 24 hours
});
In above code i have given for 24 hours.. I do not want my token to get expire. What shall be done for this?