第一個web伺服器

來源:互聯網
上載者:User

標籤:function   服務   logs   第一個   模組   class   web伺服器   call   const   

---恢複內容開始---

 書:

 1 var http = require("http");  //載入http模組 2 function process_request(req,res) {   //定義一個function   req=request  res=response 3     var body = "Thanks for calling!\n";    4     var content_length = body.length;   //length 屬性可返回字串中的字元數目。 5     res.writeHead(200,{               //write HTTP header 6         ‘Content-Length‘: content_length,    7         ‘Content-Type‘ : ‘text/plain‘ 8     }); 9     res.end(body);10 }11 12 var s = http.createServer(process_request);  13 s.listen(8080);

 

 1 const http = require(‘http‘); 2  3 const hostname = ‘127.0.0.1‘; 4 const port = 3000; 5  6 const server = http.createServer((req, res) => { 7   res.statusCode = 200; 8   res.setHeader(‘Content-Type‘, ‘text/plain‘); 9   res.end(‘Hello World\n‘);10 });11 12 server.listen(port, hostname, () => {13   console.log(`Server running at http://${hostname}:${port}/`);14 });

 

javascript - JS中=>,>>>是什麼意思啊? - SegmentFault
https://segmentfault.com/q/1010000003751061

第一個web伺服器

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.