From cd7323bd4ffd1a6f2644d0dae29566ee2b982899 Mon Sep 17 00:00:00 2001 From: Shivam Sharma Date: Thu, 21 Aug 2025 12:55:34 +0530 Subject: [PATCH] doc: update express app example --- Readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 778a952c35a..d62b9821250 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