Last active
May 31, 2017 21:13
-
-
Save kmokidd/15b9b9a6b1e32c15e9b5 to your computer and use it in GitHub Desktop.
Node.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var http = require("http"), | |
url = require("url"), | |
path = require("path"), | |
fs = require("fs"); | |
http.createServer(function (req, res) { | |
var pathname=__dirname+url.parse(req.url).pathname; | |
if (path.extname(pathname)=="") { | |
pathname+="/"; | |
} | |
if (pathname.charAt(pathname.length-1)=="/"){ | |
pathname+="index.html"; | |
} | |
fs.exists(pathname,function(exists){ | |
if(exists){ | |
switch(path.extname(pathname)){ | |
case ".html": | |
res.writeHead(200, {"Content-Type": "text/html"}); | |
break; | |
case ".js": | |
res.writeHead(200, {"Content-Type": "text/javascript"}); | |
break; | |
case ".css": | |
res.writeHead(200, {"Content-Type": "text/css"}); | |
break; | |
case ".gif": | |
res.writeHead(200, {"Content-Type": "image/gif"}); | |
break; | |
case ".jpg": | |
res.writeHead(200, {"Content-Type": "image/jpeg"}); | |
break; | |
case ".png": | |
res.writeHead(200, {"Content-Type": "image/png"}); | |
break; | |
default: | |
res.writeHead(200, {"Content-Type": "application/octet-stream"}); | |
} | |
fs.readFile(pathname,function (err,data){ | |
res.end(data); | |
}); | |
}else{ | |
res.writeHead(404, {"Content-Type": "text/html"}); | |
res.end("404 Not Found"); | |
} | |
}); | |
}).listen(9001, "127.0.0.1"); | |
console.log("Server running at http://127.0.0.1:9001/"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment