Files
fastify-beginner-guide/node_modules/fastify/examples/simple.mjs

28 lines
433 B
JavaScript

// works on Node v14.13.0+
import { fastify } from '../fastify.js'
const app = fastify({
logger: true
})
const schema = {
schema: {
response: {
200: {
type: 'object',
properties: {
hello: {
type: 'string'
}
}
}
}
}
}
app.get('/', schema, async function (req, reply) {
return { hello: 'world' }
})
app.listen({ port: 3000 }).catch(console.error)