โก Vite + Express
@vitejs integration module for @expressjs
๐ฆ Installation & usage๐ Shipping to production๐ค Transforming HTML๐ค How does it work?๐ Documentation
๐ Click here to see the changelog
๐ฌ Introduction
With Vite you can easily bootstrap your project and just start working without figuring everything out. That's great for front-end apps, but when you want to include server-side into the mix, things get quite complicated. Thanks to vite-express you can just as easily start writing full-stack app in seconds.
import express from "express";
import ViteExpress from "vite-express";
const app = express();
app.get("/message", (_, res) => res.send("Hello from express!"));
ViteExpress.listen(app, 3000, () => console.log("Server is listening..."));
You can also bind into the express app, to be able to do things such as specifying custom host address or creating your own server instance (e.g., when you want to use the https:
protocol).
import express from "express";
import ViteExpress from "vite-express";
const app = express();
const server = app.listen(3000, "0.0.0.0", () =>
console.log("Server is listening...")
);
ViteExpress.bind(app, server);
โก vite-express
takes care of
- injecting necessary middleware to serve static files from your express server
- managing unhandled routes to make client-side routing possible
The only thing that is left to you is to code!
๐ฆ Installation & usage
๐๏ธ create-vite-express
Fresh setup with The easiest way to setup a Vite Express app is to use ๐๏ธ create-vite-express
package
-
Run the CLI from your terminal
yarn create vite-express
-
Follow the prompts to configure your project using your favourite framework.
-
Open app folder, install dependencies and run the app in development mode
cd YOUR_APP_NAME yarn yarn dev
-
Open your browser at
http://localhost:3000
-
Change the client code and see the beauty of HMR in action!
Congrats, you've just created your first vite-express
app!
create-vite
Fresh setup with Alternatively you can use create-vite
package to setup the client and then add an express server to it if your favourite framework isn't supported by create-vite-express
.
-
Start by creating Vite project
yarn create vite
-
Follow the prompts to configure your project using your favourite framework.
-
Install
express
andvite-express
packagesyarn add express vite-express
-
Create a server script inside project root directory
//e.g server.js import express from "express"; import ViteExpress from "vite-express"; const app = express(); app.get("/message", (_, res) => res.send("Hello from express!")); ViteExpress.listen(app, 3000, () => console.log("Server is listening..."));
โ ๏ธ For some frameworks like React, Vite sets thepackage.json
type
field tomodule
so you need to use ESModulesimport
syntax despite writing a node script. If that's a problem you can freely change thetype
back tocommonjs
as Vite usesESModules
for front-end either way! -
Run the express script
node server.js
-
Open your browser at
http://localhost:3000
-
Change the client code and see the beauty of HMR in action!
Congrats, you've just created your first vite-express
app!
๐ Shipping to production
By default vite-express runs in development mode, when server uses Vite's Dev Server in middleware mode (which means that no separate Vite process is running) utilizing the power of HMR and native browser modules. This is not suitable for production as described here, so in production we want to serve static files that Vite spits out during it's build process. That's why you need to invoke vite build
command first. Then you need to run your app in production mode.
You have these options to achieve that
-
Run the code with
NODE_ENV=production
variable, either by inlining it with the commandNODE_ENV=production node server.ts
Or by using
dotenv
or other envs tool. -
Use
ViteExpress.config()
and setmode
toproduction
import express from "express"; import ViteExpress from "vite-express"; const app = express(); ViteExpress.config({ mode: "production" }) app.get("/message", (_, res) => res.send("Hello from express!")); ViteExpress.listen(app, 3000, () => console.log("Server is listening..."));
โก Viteless mode
vite-express
uses Vite even in production to resolve vite.config.js
correctly. If you want to be able to run your production app without Vite and all development dependencies, you need to specify custom inline config using ViteExpress.config({ inlineViteConfig: ... })
.
Valid configuration values used by vite-express
are root
, base
and outDir
.
-
When
inlineViteConfig
is set toundefined
(by default) Vite is used in production to resolve config file -
To use viteless mode with the defaults you can set
inlineViteConfig
as{}
import express from "express"; import ViteExpress from "vite-express"; ViteExpress.config({ inlineViteConfig: {} }) ViteExpress.listen(express(), 3000);
-
You can also specify any combination of valid parameters
import express from "express"; import ViteExpress from "vite-express"; ViteExpress.config({ inlineViteConfig: { base: "/admin", build: { outDir: "out" } } }); ViteExpress.listen(express(), 3000);
Be aware that in viteless mode you have two separate sources of truth - vite.config.js
and your inline configuration, so you need to manually keep them in sync.
Most of the time you are okay with using Vite in production as it's easier, this approach is only recommended if you want to reduce production dependencies.
๐ค Transforming HTML
You can specify transformer function that takes two arguments - HTML as a string and Request
object - and returns HTML as a string with any string related transformation applied. It can be used to inject your custom metadata on the server-side.
This transformer function is invoked right before sending the HTML to the client in the index-serving middleware that vite-express
injects at the end of the middleware stack.
Imagine a situation in which your index.html file looks like this
<html>
<head>
<!-- placeholder -->
</head>
<body>
<div id="root"></div>
</body>
</html>
You can then use custom transformer function to replace the HTML comment with any string you like. It can be a custom meta tag. You can use request object to extract additional information about request such as requested page.
import express from "express";
import ViteExpress from "vite-express";
import someMiddleware from "./some/middleware";
const app = express()
function transformer(html: string, req: express.Request) {
return html.replace(
"<!-- placeholder -->",
`<meta name="custom" content="${req.baseUrl}"/>`
)
}
app.use(someMiddleware())
ViteExpress.config({ transformer })
ViteExpress.listen(app, 3000);
The HTML served to the client will then look something like this
<html>
<head>
<meta name="custom" content="/"/>
</head>
<body>
<div id="root"></div>
</body>
</html>
๐ค How does it work?
The way vite-express
works is quite simple. As soon as you invoke ViteExpress.listen
:
-
Static files serving middleware is injected at the end of express middlewares stack, but you can change that by using
ViteExpress.static
middleware to precisely describe at what point do you want to serve static files. This middleware takes care of serving static files from the Vite Dev Server indevelopment
mode and inproduction
modeexpress.static
is used instead. -
A GET routes handler
get("*")
is registered at the end of middleware stack to handle all the routes that were unhandled by you. We do this to ensure that client-side routing is possible.
Because ViteExpress.listen
is an async function, in most cases it doesn't matter when you invoke it, but it is generally the best to do it at the end of file to avoid get("*")
handler overriding your routes.
๐ Documentation
config(options) => void
Used to pass in configuration object with each key optional.
ViteExpress.config({ /*...*/ });
๐ง Available options
name | description | default | valid values |
---|---|---|---|
mode | When set to development Vite Dev Server will be utilized, in production app will serve static files built with vite build command |
"development" |
"development" | "production" |
transformer | A function used to transform HTML served to the client, useful when you want to inject some metadata on the server. First argument is the HTML that is about to be sent to the client, second is the Request object. Needs to return transformed HTML as a string. |
undefined |
undefined | (html: string, req: Request) => string |
inlineViteConfig | When set to non-undefined value, vite-express will be run in viteless mode |
undefined |
undefined | ViteConfig |
type ViteConfig = {
root?: string;
base?: string;
build?: { outDir: string };
}
listen(app, port, callback?) => http.Server
Used to inject necessary middlewares into the app and start listening on defined port. Should replace app.listen()
in your base express application. Due to its async nature can be invoked at any time but should generally be invoked at the end to avoid interfering with other middlewares and route handlers.
app
- express application returned from invokingexpress()
port: number
- port that server will be listening oncallback?: () => void
- function that will be invoked after server starts listening
Returns the same http.Server
that is returned by express when running app.listen()
const app = express();
const httpServer = ViteExpress.listen(app, 3000, () => console.log("Server is listening!"));
async bind(app, server, callback?) => Promise<void>
Used to inject necessary middleware into the app, but does not start the listening process. Should be used when you want to create your own http
/https
server instance manually e.g. when you use socket.io
library. Same as listen
, can be invoked at any time because it is async, but it is advised to invoke it when you already registered all routes and middlewares, so that it can correctly hook into the express app.
app
- express application returned from invokingexpress()
server: http.Server | https.Server
- server instance that is returned when invokinghttp.createServer
callback?: () => void
- function that will be invoked after Vite dev server is started and vite-express injects all middleware
const app = express();
const server = http.createServer(app).listen(3000, () => {
console.log("Server is listening!")
});
ViteExpress.bind(app, server);
static() => RequestHandler
Used as a typical express middleware to indicate to vite-express
the exact moment when you want to register static serving logic. You can use this method to prevent some of your request blocking middleware, such as authentication/authorization, from blocking files coming from your server, which would make displaying for example login page impossible because of blocked html, styles and scripts files.
Example:
import express from "express"
import yourAuthMiddleware from "some/path"
const app = express()
app.use(ViteExpress.static())
app.use(yourAuthMiddleware())
app.get("/", ()=> /*...*/ )
ViteExpress.listen(app, 3000, () => console.log("Server is listening!"))
You should use it when the default behaviour of serving static files at the end of middleware chain doesn't work for you because you block requests in some way.
async build() => Promise<void>
Used when you want to build the app to production programically. It is adviced to use vite build
command, but can be freely used in some edge scenarios (e.g. in some automation scripts) as it does the same thing.
ViteExpress.build();