From aa907945cd1727483a888a0a6481f9f4861593f8 Mon Sep 17 00:00:00 2001 From: Shivam Sharma Date: Fri, 22 Aug 2025 12:42:09 +0530 Subject: [PATCH] doc: update express app example (#6718) --- Readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 778a952c..d62b9821 100644 --- a/Readme.md +++ b/Readme.md @@ -40,7 +40,9 @@ app.get('/', (req, res) => { res.send('Hello World') }) -app.listen(3000) +app.listen(3000, () => { + console.log('Server is running on http://localhost:3000') +}) ``` ## Installation