const body = []
req.on('data', data => {
body.push(Buffer.from(data))
})
req.on('end', () => {
const message = body.toString().split('=')[1]
})
res.end('<h1> Ваше сообщение: ${message} </h1>')
})