我用的是Window系統,其餘系統應該也差很少吧html
一、下載node
https://nodejs.org/en/web
直接點擊最新版本下載就行了瀏覽器
二、安裝測試
三、測試ui
打開cmd命令行,直接輸入 node 而後回車spa
鍵入 console.log("Hello,World!");命令行
查看輸出結果code
Hello,World!
undefined
四、建立工做目錄server
隨便找個系統盤,建立workspace\nodejs\
五、建立簡單的web項目
建立httpdemo/test.js
寫入下面代碼:
var http = require("http"); http.createServer(function(req, res) { res.writeHead(200, {"Content-Type": "text/html"}); res.write("<h1>Node.js</h1>"); res.end("<p>Game Over hhhhh</p>"); }).listen(8089); console.log("HTTP server is listening at port 8089.");
而後啓動:
cmd轉到文件目錄輸入:node test.js
回車
而後在瀏覽器中輸入:http://localhost:8089/
若是能看到輸出結果,則代表成功。