Node.js ez 2015-08-14
本篇要使用 Node.js 快速在 Windows 建立 Web Server 網頁伺服器,首先必須到官網下載 Node.js 程式。
下載網址:https://nodejs.org/download/
依照作業系統下載所需版本。
接下來新增個檔案,輸入以下內容,並且儲存為 webserver.js (檔名可以自行取名)
var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end("Hello World"); }).listen(8080, '127.0.0.1'); console.log('Server running at http://127.0.0.1:8080/');
接下來打開 cmd 命令提示字元,輸入:node webserver.js
Web Server 就建立完成了!
可以透過瀏覽器輸入 http://127.0.0.1:8080/ ,就可以觀看到 Web Server 網頁了!
本文章網址:
https://www.ez2o.com/Blog/Post/Node.js-Web-Server-Sample-Code
https://www.ez2o.com/Blog/Post/550
https://www.ez2o.com/Blog/Post/Node.js-Web-Server-Sample-Code
https://www.ez2o.com/Blog/Post/550