You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you do something like res.status(200).set('Content-Type', 'text/plain').send('Done!').end(); it doesn't work as .send() doesn't return anything inside the middleware
I guess it doesn't matter too much since I assume calling .end() isn't needed
If you do something like
res.status(200).set('Content-Type', 'text/plain').send('Done!').end();it doesn't work as .send() doesn't return anything inside the middlewareI guess it doesn't matter too much since I assume calling
.end()isn't needed