You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
261 B
10 lines
261 B
// const express = require('express')
|
|
import express from 'express'
|
|
|
|
const app = express()
|
|
|
|
const PORT = 8080 // 可根据需要更改端口号
|
|
app.listen(PORT, () => {
|
|
console.log(`服务器已启动,正在监听端口 ${PORT}`)
|
|
})
|
|
app.use(express.json())
|