Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
vite-plugin-virtual-mpa
Advanced tools
Out-of-the-box MPA plugin for Vite, with html template engine and virtual files support.
Out-of-the-box MPA plugin for Vite, with html template engine and virtual files support, generate multiple files using only one template
English | 中文
When building MPA(multi-page-applications) with Vite, we usually need a plugin that:
Has a template engine such as EJS, which can use one template to generate multiple files, and can customize the path of the generated files at build time.
Auto configurations for rollupOptions.input
and provide the ability to configure the development server's proxy (primarily the History Fallback API).
There are so many MPA plugins for vite on the market, but it seems no one can do both of above at the same time. I filtered the following plugins based on name matching and downloads:
vite-plugin-mpa: It can automatically configure the entry and provide the DevServer proxy configuration (history fallback), but we must adjust the directory structure according to the convention, and does not support template engines and virtual entry, and cannot define the path to generate files.
vite-plugin-html-template: The author of this plugin is the same as vite-plugin-mpa, which is recommended by the author. It is primarily used in combination with the MPA plugin to provide template engine functionality, and also doesn't support virtual entry.
vite-plugin-html: It supports template engines only, but no virtual entry. You need to use multiple entry templates if you want to generate multiple files.
vite-plugin-virtual-html: It supports virtual entry points, provides a rendering interface to customize template engines. But there's no built-in template engine, so it's a bit cumbersome to use.
Here, "virtual entry" means that multiple entry HTML files are rendered through only one template file.
They have their strengths, but they don't work very well. Either it needs to be used in conjunction or it is a significant change to the existing project structure. Sometimes I wonder if it is losing the advantage of template by implementing a template engine but requiring multiple template files.
This plugin is designed to solve these problems, and it has all of these capabilities at the same time. By combining virtual entry and template engine, users can generate different entry HTML with only one template, and can customize the output path of the entry file (no need to manually write scripts to move!). It also provides an interface to configure rewrite rules for the development server, so that the development can correctly request the entry file.
If your project is using Vite workflow and is an MPA application, you may want to give this plugin a try. It doesn't limit the technology stack, it doesn't matter if you use Vue or React or any other technologies.
pnpm add -D vite-plugin-virtual-mpa # or npm/yarn
// vite.config.ts
import { createMpaPlugin } from 'vite-plugin-virtual-mpa'
// @see https://vitejs.dev/config/
export default defineConfig({
plugins: [
createMpaPlugin({
pages: [
// your configuration
]
}),
],
})
interface MpaOptions {
/**
* whether to print log
* @default true
*/
verbose?: boolean,
/**
* default template file
* @default index.html
*/
template?: `${string}.html`,
/**
* Configure your rewrite rules, only proceed html requests.
* further: https://github.com/bripkens/connect-history-api-fallback
*/
rewrites?: Rewrite[],
/**
* your MPA core configurations
*/
pages: Array<{
/**
* Required page name.
*/
name: string;
/**
* Relative path to the output directory, which should end with .html
* @default `${name}.html`
*/
filename?: `${string}.html`;
/**
* Higher priority template file, which will overwrite the default template.
*/
template?: string;
/**
* Entry file that will append to body. which you should remove from the html template file.
*/
entry?: string;
/**
* Data to inject with ejs.
*/
data?: Record<string, any>,
}>
}
// vite.config.ts
import { createMpaPlugin } from 'vite-plugin-virtual-mpa'
// @see https://vitejs.dev/config/
export default defineConfig({
base: '/fruits/',
build: {
outDir: 'sites'
},
plugins: [
createMpaPlugin({
// Customize the history fallback rewrite rules
rewrites: [
{
from: /\/fruits\/(apple|banana|strawberries)/,
to: ctx => `/fruits/${ctx.match[1]}.html`
},
],
pages: [
{
name: 'apple',
// filename is optional, default is apple.html, which is relative path of `build.outDir`.
filename: 'fruits/apple.html', // output into sites/fruits/apple.html at build time.
data: {
title: 'This is Apple page',
},
},
{
name: 'banana',
filename: 'fruits/banana.html',
data: {
title: 'This is Banana page',
},
},
{
name: 'strawberries',
filename: 'fruits/strawberries.html',
data: {
title: 'This is Strawberries page',
},
},
],
}),
],
})
FAQs
Out-of-box MPA plugin for Vite, with html template engine and virtual files support.
We found that vite-plugin-virtual-mpa demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.