消毒机设备
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

  1. // const express = require('express')
  2. import express from 'express'
  3. const app = express()
  4. const PORT = 8080 // 可根据需要更改端口号
  5. app.listen(PORT, () => {
  6. console.log(`服务器已启动,正在监听端口 ${PORT}`)
  7. })
  8. app.use(express.json())