Submitted for your approval, a NodeJS solution in 123 chars. ⛳
r=require;r("http").createServer((i,o)=>r("stream").pipeline(r("fs").createReadStream(i.url.slice(1)),o,_=>_)).listen(8080)
Run it in bash to serve files relative to that directory, and also any file on your computer if given an absolute path. 😱
node -e 'r=require;r("http").createServer((i,o)=>r("stream").pipeline(r("fs").createReadStream(i.url.slice(1)),o,e=>console.log(i.url,e))).listen(8080)'