Express - sendFile()
用 sendFile 把寫好的 HTML 傳出去,然後準備開始前端的開發。 import express from 'express'
import path from 'path';
// 建立 express 這 module
var app = express()
const port = 8888
const __dirname = path.resolve();
// This responds a GET request for the homepage
app.get('/', (req, res) => {
console.log("Got a GET request for the homepage, from");
res.sendFile(__dirname + "/hello.html");
})
var server = app.listen(port, function () {
var host = server.address().address
var port = server.address().port
console.log("Example app listening at http://%s:%s", host, port)
})
參考資料 :
1. Express 官網
0 意見:
張貼留言