1. 程式人生 > >node.js初識01

node.js初識01

方法 瀏覽器 文件夾 body func node.js info lba hello

1.對於node.js的安裝在這裏就不做過多的介紹了,安裝成功後,可以通過cmd 輸入node -v查看node的版本號,如圖所示

技術分享圖片

2.開始我們的hello world,通過cmd進入所屬文件夾,輸入node 01.js

//require表示引入包
var http = require("http");
//創建服務
var server = http.createServer(function(req,res){
    //req表示請求,res表示響應
    //請求頭 狀態碼,文件類型,字符集
    res.writeHead(200,{"Content-type":"text/html;charset=UTF-8"});
    res.end(
"哈哈哈哈,這是我的第一個頁面"+(1+2+3)+"s"); }); //運行服務器,監聽端口號3000,端口號可以改 server.listen(3000,"127.0.0.1");

3.然後在瀏覽器的窗口輸入127.0.0.1:3000,你會看到如下界面

技術分享圖片

這裏附上node的官網,你可以去查看所有的方法和屬性https://nodejs.org/docs/latest-v7.x/api/http.html#http_response_write_chunk_encoding_callback

node.js初識01