Express Envoyer 401 Réponse

res.status(401).send('No access!');

// OR:

res.send(401, 'No access!');
KostasX