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