Skip to content

Commit 6bd79db

Browse files
authored
Update server.js
1 parent ace8aa4 commit 6bd79db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
const express = require('express')
22
const app = express()
3-
const port = 3000
3+
const port = 8080
44

55
app.get('/', (req, res) => {
66
res.send('Hello World!')
77
})
88

99
app.listen(port, () => {
1010
console.log(`Example app listening on port ${port}`)
11-
})
11+
})

0 commit comments

Comments
 (0)