blob: 171758ed020faa50e8470f9ab381002e6a7da7ed (
plain) (
blame)
1
2
3
4
5
6
7
8
|
const http = require("http");
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
.end('Hello World\n');
}).listen(8080);
module.exports = http;
|