CoolFace
Apppublic

Samsuhail/tras

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