I have a NodeJS API built using Express and now I'm working on the frontend using React. The API uses JWT tokens for authorization - creating one when logging in and returning it in an authorization header in the response for further uses. Now, I need to use these tokens for session cookies instead of local storage (files); how can I do it? and which module is the best for it? I know it's been asked many times but I couldn't find a detailed answer for my question.