Import maps: a way to control the behavior of JavaScript imports. WICG/import-maps
CDN: A content delivery network (CDN) refers to a geographically distributed group of servers which work together to provide fast delivery of Internet content. Cloudflare.com
A vite plugin which externalizes dependencies and resolves them independently from CDN (Content Delivery Network) providers using import maps and es-module-shims! This plugin generates an import map for your app automatically in both development and production, and resolves dependencies based on that.
It is based on @jspm/generator which supports different providers like jspm, unpkg and skypack.
import { defineConfig } from "vite";
import jspmPlugin from "vite-plugin-jspm";
export default defineConfig({
plugins: [
jspmPlugin({
development: true // enables the plugin in `vite dev`
// optional object for @jspm/generator options and settings, more info in https://github.com/jspm/generator
}),
],
// we need to disable vite's default polyfilling, because es-module-shims enables it instead
build: { polyfillModulePreload: false, polyfillDynamicImport: false },
});
enables the plugin in vite dev
.
jspmPlugin({
development: true
}),
inputMap
: An existing import map can be passed to the generator with the inputMap option for adding new packages to an existing map or modifying an existing map
If this option is true
and inputMap
is defined, we skip installing/resolving dependencies and only dependencies from the inputMap
would be resolved
jspmPlugin({
inputMap: { ... },
strictInputMap: true
}),
You can see the bundle size of test/basic
example in two cases:
# without this plugin
dist/index.html 0.45 KiB
dist/assets/index.75d36a39.js 0.23 KiB / gzip: 0.17 KiB
dist/assets/vendor.75a6031c.js 128.58 KiB / gzip: 41.37 KiB
# with this plugin
dist/index.html 0.86 KiB
dist/assets/index.0fb49565.js 0.23 KiB / gzip: 0.15 KiB
Feel free to open issues and PRs!