module.exports = async (req, res) => { res.writeHead(200, { 'Connection': 'keep-alive', 'Content-Type': 'text/event-stream', 'Cache-Control': 'no-cache' }); setInterval(() => { res.write({ foo: 'bar' }); }, 500) }