blob: b1e485e7a527e69770615abb1bf0e72213912c0e (
plain) (
blame)
1
2
3
4
5
6
7
|
require('http').createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain', 'Content-Length': 14});
res.write('write');
res.write('write2');
res.end('end');
}).listen(8080);
|