fastify
Version:
Fast and low overhead web framework, for Node.js
28 lines (23 loc) • 424 B
JavaScript
// works on Node v14.13.0+
import { fastify } from '../fastify.js'
const app = fastify({
logger: false
})
const schema = {
schema: {
response: {
200: {
type: 'object',
properties: {
hello: {
type: 'string'
}
}
}
}
}
}
app.get('/', schema, async function (req, reply) {
return { hello: 'world' }
})
app.listen(3000).catch(console.error)