doc: update express app example (#6718)

This commit is contained in:
Shivam Sharma 2025-08-22 12:42:09 +05:30 committed by GitHub
parent 89f198c6a5
commit aa907945cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,7 +40,9 @@ app.get('/', (req, res) => {
res.send('Hello World') res.send('Hello World')
}) })
app.listen(3000) app.listen(3000, () => {
console.log('Server is running on http://localhost:3000')
})
``` ```
## Installation ## Installation