01.Hello Node.js

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了01.Hello Node.js相关的知识,希望对你有一定的参考价值。

技术分享

程序下载:https://files.cnblogs.com/files/xiandedanteng/helloNodejs.rar

关键代码:

var http=require(‘http‘);
var fs=require(‘fs‘);
var path=require(‘path‘);
var mime=require(‘mime‘);
var cache={};

function send404(response){
    response.writeHead(404,{‘Content-Type‘:‘text/plain‘});
    response.write(‘Error 404:resource you requested not found.‘);
    response.end();
}

function sendFile(response,filePath,fileContents){
    response.writeHead(200,{‘Content-Type‘:mime.lookup(path.basename(filePath))});
    response.end(fileContents);
}

function serveStatic(response,cache,absPath){
    if(cache[absPath]){
        sendFile(response,absPath,cache[absPath]);
    }else{
        fs.exists(absPath,function(exists){
            if(exists){
                fs.readFile(absPath,function(err,data){
                    if(err){
                        send404(response);
                    }else{
                        cache[absPath]=data;
                        sendFile(response,absPath,data)
                    }
                }
                );
                
            }else{
                send404(response);
            }
        }
        );
    }
}

var server=http.createServer(function(request,response){
    var filePath=false;
    
    if(request.url=="/"){
        filePath=‘public/index.html;
    }else{
        filePath=‘public‘+request.url;
    }
    
    var absPath=‘./‘+filePath;
    serveStatic(response,cache,absPath);
}
);

server.listen(3000,function(){
    console.log(‘Server is listenning on port 3000.‘);
});

 

以上是关于01.Hello Node.js的主要内容,如果未能解决你的问题,请参考以下文章

Node.js 基础--01 Hello,World

Node.js JavaScript 片段中的跳过代码

澄清 node.js + promises 片段

vscode代码片段建议bug

TypeScript教程# 2:TS开发环境搭建

从Node.js Stream写入多个文件