From 98203024719fa147c7037c93974aea1f0ede70fd Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Fri, 27 Feb 2026 23:41:13 +0100 Subject: [PATCH] Update index.js --- nodejs/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodejs/index.js b/nodejs/index.js index 0bed9c7..f55cbf9 100644 --- a/nodejs/index.js +++ b/nodejs/index.js @@ -6,7 +6,7 @@ fastify.register(require('@fastify/cors')) fastify.get('/', function (req, reply) { console.log('hello'); - return { hello: "from nodejs" } + return { hello: "from nodejs #2" } }) fastify.get('/300', function (req, reply) { return reply.code(300).header('Content-Type', 'application/json; charset=utf-8').send({ hello: '300' })