fs.readFile('helloworld.txt', 'utf-8', function(error, data) {
response.writeHead(200, {'content-type': 'text/plain'});
if (error)
response.write('Could not find or open file for reading\n');
else
response.write(data);
console.log(responce.write(data));
responce.end();
});
}).listen(8124, function() { console.log('bound to port 8124'); } );
console.log('Server running on 8124');
console.log('...and what about the data?');
и вот вывод:
$ node helloworld.js
Server running on 8124
...and what about the data?
bound to port 8124
может быть так вообще неправильно console.log(responce.write(data)); делать?
во первых ифы оборачивай в фигурные скобки
Обсуждают сегодня