node 建立靜態服務器並自動打開瀏覽器

node 做爲一門偏向後端的技術,提供了能夠讓咱們js 在服務器上運行的平臺,爲咱們前端工程師實現項目前端工程化,帶來了衆多便利。同時,它也能夠很方便的建立靜態服務器,能夠直接鏈接數據庫、、、實現多種功能,能夠說,對於一個前端工程師若是精通了 node ,那麼開發效率能夠大大的提升,下面就是一段 利用 node 搭建的一個項目服務器,來啓動項目並在默認瀏覽器裏自動打開。javascript

 

var http = require('http'), // 引入須要的模塊
    fs = require('fs'),//引入文件讀取模塊
    cp = require('child_process'),  // 可自動打開瀏覽器模塊
	url  = require("url"),
    path = require("path");
    
    
http.createServer(function (req, res) {
    var pathname=__dirname+url.parse(req.url).pathname;  // 對於文件路徑統一處理
    if (path.extname(pathname)=="") {
        pathname+="/html/";  // 欲打開文件的目錄
    }
    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){
            	console.log((new Date()).toLocaleString() +" " +pathname);
                res.end(data);
            });
        } else {  // 找不到目錄 時的處理
            res.writeHead(404, {"Content-Type": "text/html"});
            res.end("<h1>404 Not Found</h1>");
        }
    });
    
}).listen(8889, "127.0.0.1");  // 監聽端口

console.log("Server running at http://127.0.0.1:8889/");

cp.exec('start http://127.0.0.1:8889/');  // 自動打開默認瀏覽器
相關文章
相關標籤/搜索