mirror of
https://github.com/http-party/node-http-proxy.git
synced 2025-12-08 20:59:18 +00:00
3 lines
93 B
JavaScript
3 lines
93 B
JavaScript
require('http').createServer(function(req, res) {
|
|
res.end('Hello world!');
|
|
}).listen(9000); |