Home / File/ server.js — fastify Source File

server.js — fastify Source File

Architecture documentation for server.js, a javascript file in the fastify codebase.

Entity Profile

Source Code

'use strict'

const Fastify = require('../fastify')

const fastify = Fastify()

fastify.listen({
  host: '::',
  port: 3000
})

fastify.get('/', async function (request, reply) {
  reply.code(200).send({ data: 'home page' })
})

fastify.post('/post/:id', async function (request, reply) {
  const { id } = request.params
  reply.code(201).send({ data: `${id}` })
})

fastify.put('/put/:id', async function (request, reply) {
  const { id } = request.params
  reply.code(200).send({ data: `${id}` })
})

fastify.delete('/delete/:id', async function (request, reply) {
  const { id } = request.params
  reply.code(204).send({ data: `${id}` })
})

Frequently Asked Questions

What does server.js do?
server.js is a source file in the fastify codebase, written in javascript.
Where is server.js in the architecture?
server.js is located at integration/server.js (directory: integration).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free