Files
nest/benchmarks/fastify.js
2022-07-07 10:18:53 +02:00

8 lines
154 B
JavaScript

'use strict';
const fastify = require('fastify')();
fastify.get('/', async (req, reply) => reply.send('Hello world'));
fastify.listen({
port: 3000
});