From 9bc3dc201c01b9b50b9e17f0c0473291b1189d7f Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 14 Aug 2024 10:28:01 +0200 Subject: [PATCH] Update index.js --- nodejs/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/nodejs/index.js b/nodejs/index.js index e932bc5..8922234 100644 --- a/nodejs/index.js +++ b/nodejs/index.js @@ -3,6 +3,7 @@ const PORT = process.env.PORT || 3000 fastify.register(require('@fastify/cors')) fastify.get('/', function (req, reply) { + console.log('hello'); return { hello: "from nodejs" } }) fastify.get('/401', function (req, reply) {