I have a Node.js Express web application where a user can log in by posting his email address and password to a route /signin and when successful he receives a JWT token and stores it in his local storage.
I'm new to using JWT tokens for authorization and there's one thing I don't really understand how to do. How do I make sure that the user always send his JWT token with every request after a successful login?
I'm not using any front-end framework such as React or Vue.