“Pruebas de Fastify” Código de respuesta

rápido

// First:
// yarn add fastify or npm i fastify --save

// Require the framework and instantiate it

// ESM
import Fastify from 'fastify'
const fastify = Fastify({
  logger: true
})
// CommonJs
const fastify = require('fastify')({
  logger: true
})

// Declare a route
fastify.get('/', function (request, reply) {
  reply.send({ hello: 'world' })
})

// Run the server!
fastify.listen(3000, function (err, address) {
  if (err) {
    fastify.log.error(err)
    process.exit(1)
  }
  // Server is now listening on ${address}
})
AttractivePenguin

Pruebas de Fastify

'use strict'

const build = require('./app')

const test = async () => {
  const app = build()

  const response = await app.inject({
    method: 'GET',
    url: '/'
  })

  console.log('status code: ', response.statusCode)
  console.log('body: ', response.body)
}
test()
khudadad Rasikh

Respuestas similares a “Pruebas de Fastify”

Preguntas similares a “Pruebas de Fastify”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código