Rendre HTML brut en réponse avec express

res.set('Content-Type', 'text/html');
res.send(Buffer.from('<h2>Test String</h2>'));
KostasX