7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
import { app } from "./src/app";
|
|
|
|
// app.listen(4312, ()=> console.log(`The Server is running.`))
|
|
|
|
// 启动服务器
|
|
const port = 8000;
|
|
app.listen(port, () => console.log('running...')); |