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) {