Я очень озадачен чтением файлов в Node.js.
fs.open('./start.html', 'r', function(err, fileToRead){
if (!err){
fs.readFile(fileToRead, {encoding: 'utf-8'}, function(err,data){
if (!err){
console.log('received data: ' + data);
response.writeHead(200, {'Content-Type': 'text/html'});
response.write(data);
response.end();
}else{
console.log(err);
}
});
}else{
console.log(err);
}
});
Файл start.html
находится в том же каталоге с файлом, который пытается открыть и прочитать его.
Однако в консоли я получаю:
{[Ошибка: ENOENT, open './start.html'] errno: 34, code: 'ENOENT', путь: './start.html'}
Любые идеи?