blob: 28ff08d8ff79f03fd3d23cb37b386a6c3194c0e5 (
plain) (
blame)
1
2
3
4
5
6
|
import http from "http"
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
.end('Hello World\n');
}).listen(8080);
|