1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-08 07:00:04 +00:00
Files
server/src/server.ts
2021-08-03 08:26:42 +03:00

7 lines
167 B
TypeScript

import app from './app'
const port = 5000
const listener = app.listen(port, () => {
console.log(`⚡️[server]: Server is running at http://localhost:${port}`)
})