Skip to content

Commit 866fa22

Browse files
committed
improve ident server.ts
1 parent 627b6b7 commit 866fa22

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

server.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import express from 'express'
2-
2+
33
const app = express()
44
const PORT:Number = 9898
5-
5+
66
app.get('/', (req, res) => {
7-
res.send('Welcome to typescript backend!')
7+
res.send('Welcome to typescript backend!')
88
})
9-
9+
1010
app.listen(PORT,() => {
1111
console.log(`The application is listening on port http://localhost:${PORT}`)
1212
})

0 commit comments

Comments
 (0)