Node.js API —— Synopsis(概要)

// 說明
    Node API 版本爲 v0.10.31。
    中文參考:http://nodeapi.ucdok.com/#/api/ 
    本段爲博主註解。

目錄

● 概要

概要

    一個以 ’Hello World‘ 做爲響應的以 Node 編寫的 web 服務器
1 var http = require('http'); 2  
3 http.createServer(function (request, response) { 4     response.writeHead(200, {'Content-Type': 'text/plain'}); 5     response.end('Hello World\n'); 6 }).listen(8124); 7 
8 console.log('Server running at http://127.0.0.1:8124');

    要運行服務器,須要將代碼輸入一個名爲 example.js 的文件並經過 node 程序執行node

> node example.js Server runing at http://127.0.0.1:8124/

    文檔中全部的例子均可以相似地運行。 web

相關文章
相關標籤/搜索