18 lines
362 B
JavaScript
18 lines
362 B
JavaScript
'use strict'
|
|
|
|
const fastify = require('fastify')({ logger: true })
|
|
// const swagger = require('@fastify/swagger')
|
|
const swagger = require('..')
|
|
|
|
fastify.register(swagger, {
|
|
mode: 'static',
|
|
specification: {
|
|
path: './examples/example-static-specification.json'
|
|
},
|
|
exposeRoute: true
|
|
})
|
|
|
|
fastify.listen({ port: 3000 }, (err) => {
|
|
if (err) throw err
|
|
})
|