Node.js - HTTP Module
Find the bug in this code snippet:
import http from 'http';
const server = http.createServer((req, res) => {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end();
res.end('Hello');
});
server.listen(8080);