Skip to content
On this page

基本配置

先專案資料夾內建立一的app.js的Javascript主要檔,接下來要開始設定基本配置。

js
// app.js
const express=require('express')
const app=express()
const port=3000

設定路由

js
// app.js
app.get('/',(req,res))=>{
    res.send('Hello World!')
}

函數解說:

app.METHOD(PATH, HANDLER)

  • app.get('/')
    • app 宣告express。
    • get 路由方法( get、post、put、delete ) 。
    • / 根目錄,也就是在瀏覽器中所顯示的路徑
  • req (request)請求、要求,代表前端送來的請求資訊。
  • res (response)回應請求,代表處理請求後會饋資訊給前端。

啟動監聽

js
// app.js
app.listen(port, () => {
  console.log(`監聽port : ${port}`)
})

專案執行

cmd
node app.js

接著就可以在瀏覽器 http://localhost:3000/ 中看到Hello World!