#

início

Crie um servidor para começar
chamada de voz
Aguardando participantes
`; const server = http.createServer((req, res) => { if (req.url === "/" || req.url === "/index.html") { res.writeHead(200, { "Content-Type": "text/html; charset=utf-8", "Cache-Control": "no-store" }); res.end(page); return; } res.writeHead(404, { "Content-Type": "text/plain; charset=utf-8" }); res.end("Not found"); }); server.listen(port, () => { console.log("Deiscord running at http://localhost:" + port); })