From e466b5edc8f76bdb2c3e2cdc0bf6e9fc798d4f52 Mon Sep 17 00:00:00 2001 From: Michael Poutre Date: Sun, 30 Apr 2023 22:47:42 -0700 Subject: [PATCH] refactor: Update startup message for example app to include URL Allows clicking the URL to launch example app, this also allows some IDEs such as WebStorm to launch integrated debugger far more easily --- utils/server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/server.js b/utils/server.js index 9171c7b9d..490522588 100755 --- a/utils/server.js +++ b/utils/server.js @@ -7,4 +7,4 @@ app.use('/external', express.static('external')) app.use('/editor', express.static('editor')) app.use('/', express.static('editor')) -app.listen(8000, () => console.log('Example app listening on port 8000!')) +app.listen(8000, () => console.log('Example app listening on http://127.0.0.1:8000!'))