mirror of
https://github.com/sasjs/server.git
synced 2026-01-07 06:30:06 +00:00
9 lines
226 B
TypeScript
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}`
|
|
)
|
|
})
|