CoolFace
Apppublic

Dutchguy/Fet

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
server.js14 linesDownload Raw Back to root
1const http = require('http');2 3 4http.createServer((req, res) => {5 6  res.writeHead(200, {'Content-Type': 'text/html'});7 8  res.end('<html><body><b><marquee>KING Alya<marquee></b></body></html>');9 10}).listen(7860, () => {11 12  console.log('Server listening on port 7860');13 14});