Node.js: renamed "require_shim" to "loader".

This commit is contained in:
Oisin Canty
2021-05-24 09:01:42 +00:00
parent d643900237
commit c160ea11e4
15 changed files with 16 additions and 16 deletions

View File

@@ -0,0 +1,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(7080);