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