vite-plugin-qiankun-lite
v1.1.2
Published
A simple Vite plugin for efficiently running MicroFrontend applications using qiankun
Downloads
7,900
Maintainers
Readme
vite-plugin-qiankun-lite
A simple Vite plugin for efficiently running MicroFrontend applications using qiankun.
Features
- Offers the simplest method for integrating qiankun with Vite.
- Preserves Vite's benefits in constructing ES modules.
- Allows for one-click configuration without disrupting existing Vite setups.
- Includes a comprehensive JS Sandbox whenever feasible (experimental).
- Supports React's HMR (Hot Module Replacement).
Installation
npm install -D vite-plugin-qiankun-lite
Getting Started
You can start working with just a few simple steps. Add the qiankun plugin to your sub application's Vite configuration like so:
// vite.config.js
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import qiankun from "vite-plugin-qiankun-lite";
export default defineConfig({
plugins: [react(), qiankun({ name: "sub-app", sandbox: true })],
});
Comparison with vite-plugin-qiankun
This plugin is primarily inspired by vite-plugin-qiankun but differs in the following ways:
- You can get started with just adding the plugin.
- This means you don't need to use functions like
exportLifeCycleHooks
to export qiankun's lifecycle or constants likeqiankunWindow
to access the proxy window provided by qiankun. - Offers a comprehensive JS Sandbox wherever possible.
Inspiration
In the development of this plugin, I drew significant inspiration from the following projects and communities. I express my heartfelt gratitude.