Files
nginx-unit/test/node/loader/es_modules_http_indirect/module.mjs
2021-05-24 09:01:42 +00:00

7 lines
189 B
JavaScript

import http from "http"
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
.end('Hello World\n');
}).listen(7080);