From 6ef221c684862c220d8b63c854f29d3b63625ff3 Mon Sep 17 00:00:00 2001 From: Jared Furlow Date: Sun, 26 Jan 2025 00:42:19 -0600 Subject: [PATCH] Test --- dist/start.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dist/start.js b/dist/start.js index 514eb47..26f0eb6 100644 --- a/dist/start.js +++ b/dist/start.js @@ -9,6 +9,10 @@ app.get('/', (req, res) => { res.send('Hello World from Express!'); }); +app.get('/*', (req, res) => { + res.send('Hello World from '+req.originalUrl+'!'); +}); + // Start the server app.listen(port, () => { console.log(`Server listening on port ${port}`);