Node.js - HTTP Module
Identify the error in this Node.js HTTP server code:
import http from 'http';
const server = http.createServer((req, res) => {
res.write('Hello');
res.write('World');
res.end();
});
server.listen(3000);