blob: f1eb98e54f50c4add9ec543934ea1d0779f284c1 (
plain) (
tree)
|
|
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;
|