iisnode/test/functional/www/104_echo/echo.js

15 строки
429 B
JavaScript
Исходник Постоянная ссылка Обычный вид История

2011-09-07 04:52:39 +04:00
var http = require('http');
http.createServer(function (req, res) {
var body = "";
console.log('Request received');
req.on("data", function (chunk) {
console.log('Body chunk: ' + chunk);
body += chunk;
});
req.on("end", function () {
console.log('End of body');
res.writeHead(200, { 'Content-Type': 'text/html' });
2011-09-07 04:52:39 +04:00
res.end(body);
});
}).listen(process.env.PORT);