Node.js - HTTP Module
What is the issue with this Node.js HTTP server code?
import http from 'http';
const server = http.createServer((req, res) => {
res.writeHead(200, {'Content-Type': 'application/json'});
res.end(JSON.stringify({ message: 'Hi' }));
});
server.listen('port3000');