1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-07 06:30:06 +00:00
Files
server/src/server.ts
2021-10-07 07:29:05 +00:00

9 lines
226 B
TypeScript

import app from './app'
import { configuration } from '../package.json'
app.listen(configuration.sasJsPort, () => {
console.log(
`⚡️[server]: Server is running at http://localhost:${configuration.sasJsPort}`
)
})