markdalgleish / remix-template-vite

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

remix-template-vite

⚠️ Remix support for Vite in unstable

📖 See the Remix Vite docs for details on supported features.

$ npx create-remix@nightly --template https://github.com/pcattori/remix-template-vite

Minimal server

Spin up a minimal Vite dev server:

$ npm run dev

Or build run your app for production and run it:

$ npm run build
$ npm run start

Extensible server

Remix exposes APIs for integrating Vite with a custom server:

import {
  unstable_createViteServer,
  unstable_loadViteServerBuild,
} from "@remix-run/dev";

In this template, we'll use Express but remember that these APIs can be used with any Node-compatible server setup that supports standard middleware.


Spin up the Express server as a dev server:

$ npm run dev:express

Or build your app for production and run it:

$ npm run build
$ npm run start:express

About


Languages

Language:TypeScript 56.3%Language:JavaScript 43.7%