CoolFace
Apppublic

Akwesi/Mr.Amui

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