I am trying to follow episode 3 from nodetuts.com. In addition, I am using the newest (unstable) version of node - node.exe, version 0.5.2. Here is my code, I hit my head against the wall with this error almost all day. Is this just a Windows thing?
var http = require('http'); var fs = require('fs'); var file_path = __dirname + '\\me.jpg'; console.log('serving: '+file_path); fs.stat(file_path, function(err, stat){ if (err) throw err; http.createServer(function(request,response){ response.writeHead(200, { 'Content-Type':'image/jpeg' }); fs.readFile(file_path, function(err, file_content){ response.write(file_content); response.end(); }); }).listen(8000); })
Thank!
RHH 06 Oct 2018-11-11T00: 00Z
source share