Currently, I am working on a NodeJS Express Application that connects to an Auth Server using client credentials grant. After receiving the token from the Auth Server, I use it to access data from an API.
I am seeking advice on the most effective way to store this token throughout my application. Any recommendations?
Just to clarify, the JWT is not linked to any specific user as my Express App itself is considered the Client in this scenario.