Akwesi/Mr.Amui
0
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});