elysia-vite-server
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

elysia-vite-server

Plugin which start and decorate vite dev server in development and in production mode serve static (if it needed)

Usage

Simple

Add index.html and server.ts with:

import { Elysia } from "elysia";
import { vite } from "elysia-vite-server";

new Elysia()
    .use(
        vite({
            static: {
                assets: ".",
                alwaysStatic: false,
                noCache: true,
            },
        })
    )
    .listen(3000, console.log);

[!WARNING] It serve static from root of example!! For education only

Vue SSR example (inspired by bluwy/create-vite-extra/template-ssr-vue)

import { Elysia } from "elysia";
import { vite } from "elysia-vite-server";

const isProduction = process.env.NODE_ENV === "production";
// Cached production assets
const templateHtml = isProduction ? await Bun.file("./index.html").text() : "";
const ssrManifest = isProduction
    ? await Bun.file("./index.html").text()
    : undefined;

new Elysia()
    .use(
        vite({
            static: {
                assets: "./dist/client",
                alwaysStatic: false,
                noCache: true,
            },
        })
    )
    .get("/", async ({ vite, request, set }) => {
        try {
            let template: string | undefined;
            let render: any;
            if (vite) {
                // Always read fresh template in development
                template = await Bun.file("./index.html").text();

                template = await vite.transformIndexHtml(request.url, template);
                render = (await vite.ssrLoadModule("/src/entry-server.js"))
                    .render;
            } else {
                template = templateHtml;
                render = (await import("./dist/server/entry-server.js")).render;
            }

            const rendered = await render(request.url, ssrManifest);

            const html = template
                .replace("<!--app-head-->", rendered.head ?? "")
                .replace("<!--app-html-->", rendered.html ?? "");

            return new Response(html, {
                headers: {
                    "Content-Type": "text/html",
                },
            });
        } catch (e) {
            if (e instanceof Error) {
                vite?.ssrFixStacktrace(e);
                console.log(e.stack);
                set.status = 500;

                return e.stack;
            }
        }
    })
    .listen(3000, console.log);

Options

Key Type Default Description
mode? "development" | "production" process.env.NODE_ENV || "development" In development mode it starts vite and in production it just served static (if it needed).
vite? InlineConfig Configure vite server in development mode.
static? StaticOptions | false Configure static plugin options in production mode. Pass false to disable static plugin

Powered by elysia-connect-middleware!

Dependencies (2)

Dev Dependencies (4)

Package Sidebar

Install

npm i elysia-vite-server

Weekly Downloads

2

Version

0.0.1

License

none

Unpacked Size

7.36 kB

Total Files

4

Last publish

Collaborators

  • skravets