mirror of
https://github.com/sasjs/server.git
synced 2026-01-03 13:10:04 +00:00
7 lines
150 B
TypeScript
7 lines
150 B
TypeScript
import app from './app'
|
|
|
|
const port = 5000
|
|
app.listen(port, () => {
|
|
console.log(`⚡️[server]: Server is running at http://localhost:${port}`)
|
|
})
|