1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-03 13:10:04 +00:00
Files
server/src/server.ts
2021-07-09 08:28:33 +03:00

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}`)
})