node學習歷程

ShariseMo發表於2018-06-04

安裝

直接到node官網,下載一個版本安裝即可,還可以下載nvm(node的版本管理工具,可以為不同需要切換不同的node版本,Windows下沒有nvm,換成win-nvm)

第一個node應用

新建一個node-demo.js檔案,在檔案中輸入以下程式碼,然後在命令列執行:node node-demo.js

var http = require('http') 
//建立  接收http客戶端請求並返回響應的http伺服器  的應用程式http.createServer(function(req,res){    res.writeHead(200,{'Content-Type':'text/html'})    res.write('<head><meta charset="utf-8"/></head>')    res.end('你好\n')}).listen(1337,'127.0.0.1')console.log('Server running att http://127.0.0.1:1337')複製程式碼



相關文章