const http = require('http');
const hostname = '127.0.0.1';
const port = 3000;
const server = http.createServer((req, res) => {
console.log('requested Data');
res.statusCode = 200;
res.setHeader('Content-Type', 'text/html');
res.end('<h1>Hello World</h1>');
});
server.listen(port, hostname, () => {
console.log(`เปิด Server running at http://${hostname}:${port}/`);
});
-
Kriengkrai Yothee authoredface39f8