microfleet/core

View on GitHub
benchmarks/fastify/server.js

Summary

Maintainability
A
0 mins
Test Coverage
const fastify = require('fastify')

const server = fastify()

server.get('/hello', function (req, reply) {
  reply.send({ hello: 'world' })
})

server.listen(3000)