簡易的網頁伺服器

使用express套件建立網頁伺服器

引用express套件

設定網頁檔案存放的資料夾

設定伺服器的埠

var express = require('express')
var app = express()

app.use(express.static('www'))

app.listen(8080)

將index.html檔放置www資料夾內及可連線

http://localhost:8080/index.html