Home / File/ asyncawait.js — fastify Source File

asyncawait.js — fastify Source File

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

Entity Profile

Relationship Graph

Source Code

'use strict'

const fastify = require('../fastify')({ logger: true })

const schema = {
  schema: {
    response: {
      200: {
        type: 'object',
        properties: {
          hello: {
            type: 'string'
          }
        }
      }
    }
  }
}

function result () {
  return Promise.resolve({ hello: 'world' })
}

fastify
  .get('/await', schema, async function (req, reply) {
    reply.header('Content-Type', 'application/json').code(200)
    return result()
  })
  .get('/', schema, async function (req, reply) {
    reply.header('Content-Type', 'application/json').code(200)
    return { hello: 'world' }
  })

fastify.listen({ port: 3000 }, err => {
  if (err) {
    throw err
  }
})

Domain

Subdomains

Functions

Frequently Asked Questions

What does asyncawait.js do?
asyncawait.js is a source file in the fastify codebase, written in javascript. It belongs to the CoreKernel domain, LifecycleManager subdomain.
What functions are defined in asyncawait.js?
asyncawait.js defines 1 function(s): result.
Where is asyncawait.js in the architecture?
asyncawait.js is located at examples/asyncawait.js (domain: CoreKernel, subdomain: LifecycleManager, directory: examples).

Analyze Your Own Codebase

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

Try Supermodel Free