1. 程式人生 > >任務 6:編寫 hello world web 程式

任務 6:編寫 hello world web 程式

要求:

  • 編寫 02-hello-world-server.js
  • 監聽埠:8080
  • 當收到 HTTP 請求時,傳送響應文字 hello world!
  • 用瀏覽器測試 web 程式
  • curl linux 命令列程式測試 web 程式

//cd nodejs-demo(目錄已經存在,切換)

// touch 02-hello-world-serve.js

#!/usr/bin/node

const http = require('http');

http.createServer((req, res) => {

  res.end('hello world');

}).listen(8080);

//在瀏覽器中輸入自己虛擬機器的ipv4:埠號即可看到hello world、、// curl linux 命令列程式測試 web 程式