kelvin / server.js
akorede1's picture
Create server.js
785999e verified
raw
history blame contribute delete
No virus
238 Bytes
const http = require('http');
http.createServer((req, res) => {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('<html><body>Lyfe</body></html>');
}).listen(7860, () => {
console.log('Server listening on port 7860');
});