Checking express documents I saw this kind of solution below:
app.all('/*', function(req, res) { console.log('Intercepting requests...'); });
It really intercepts the request and displays a message to the console. The problem is that the siteβs execution process does not stop, the request does not end, and it seems to be in a loop. Is there another way to simulate filters on Express or can't do it right now?
Thanks!
source share