Home / File/ server.js — vite Source File

server.js — vite Source File

Architecture documentation for server.js, a javascript file in the vite codebase. 1 imports, 0 dependents.

File javascript ViteCore DevServer 1 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  1b669fe6_974b_9ff2_6a14_caf3680e9e48["server.js"]
  c7183a98_0eee_01f4_23b4_5554e5d0e216["express"]
  1b669fe6_974b_9ff2_6a14_caf3680e9e48 --> c7183a98_0eee_01f4_23b4_5554e5d0e216
  style 1b669fe6_974b_9ff2_6a14_caf3680e9e48 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import express from 'express'

const isTest = process.env.VITEST
const isProduction = process.env.NODE_ENV === 'production'

export async function createServer(root = process.cwd(), hmrPort) {
  const app = express()

  /** @type {import('vite').ViteDevServer} */
  let vite
  if (!isProduction) {
    vite = await (
      await import('vite')
    ).createServer({
      root,
      logLevel: isTest ? 'error' : 'info',
      server: {
        middlewareMode: true,
        watch: {
          // During tests we edit the files too fast and sometimes chokidar
          // misses change events, so enforce polling for consistency
          usePolling: true,
          interval: 100,
        },
        hmr: {
          port: hmrPort,
        },
      },
      appType: 'custom',
    })
    // use vite's connect instance as middleware
    app.use(vite.middlewares)
  }

  app.use('*all', async (req, res, next) => {
    try {
      const url = req.originalUrl
      const render = isProduction
        ? (await import('./dist/app.js')).render
        : (await vite.ssrLoadModule('/src/app.js')).render
      const html = await render(url)
      res.status(200).set({ 'Content-Type': 'text/html' }).end(html)
    } catch (e) {
      vite?.ssrFixStacktrace(e)
      if (isTest) throw e
      console.log(e.stack)
      res.status(500).end(e.stack)
    }
  })

  return { app, vite }
}

if (!isTest) {
  createServer().then(({ app }) =>
    app.listen(5173, () => {
      console.log('http://localhost:5173')
    }),
  )
}

Domain

Subdomains

Functions

Dependencies

  • express

Frequently Asked Questions

What does server.js do?
server.js is a source file in the vite codebase, written in javascript. It belongs to the ViteCore domain, DevServer subdomain.
What functions are defined in server.js?
server.js defines 1 function(s): createServer.
What does server.js depend on?
server.js imports 1 module(s): express.
Where is server.js in the architecture?
server.js is located at playground/ssr-wasm/server.js (domain: ViteCore, subdomain: DevServer, directory: playground/ssr-wasm).

Analyze Your Own Codebase

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

Try Supermodel Free