9 lines
219 B
JavaScript
9 lines
219 B
JavaScript
const http = require("http");
|
|
|
|
http.createServer(function (req, res) {
|
|
res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
|
|
.end('Hello World\n');
|
|
}).listen(7080);
|
|
|
|
module.exports = http;
|