vite-plugin-esm.sh
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

vite-plugin-esm.sh

Rewrite imports with esm.sh at build time

This plugin rewrites the import statements in the project to use esm.sh so that you can fetch and cache all dependency on the client side instead of having to bundle them along with your application code.

This plugin is something I have built for my personal projects. It currently doesn't have a lock file mechanism to verify integrity yet. So wouldn't recommend using this in production. Might support this in the future

Install

npm i -D vite-plugin-esm.sh
# or
bun i -D vite-plugin-esm.sh
# or
yarn add -D vite-plugin-esm.sh
# or
pnpm add -D vite-plugin-esm.sh

Usage

import { defineConfig } from 'vite'
import { useESMImport } from 'vite-plugin-esm.sh'

export default defineConfig({
  plugins: [
    // ...
    useESMImport(),
  ],
});

Options

Currently this plugin supports no options

How it works

This plugin will read your package.json dependencies and will add that dependency as an Import map to your html file that uses esm.sh links on build time. Your development workflow will remain the same.

For example, if this is your package.json:

{
    "dependencies": {
        "react": "^18.3.1",
        "react-dom": "^18.3.1"
    }
}

Your resulting html file on build output will have the following importmap added to it:

<script type="importmap">
{
  "imports": {
    "react": "https://esm.sh/react@^18.3.1",
    "react/": "https://esm.sh/react@^18.3.1/",
    "react-dom": "https://esm.sh/react-dom@^18.3.1",
    "react-dom/": "https://esm.sh/react-dom@^18.3.1/"
  }
}
</script>

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.0.17latest

Version History

VersionDownloads (Last 7 Days)Published
0.0.17

Package Sidebar

Install

npm i vite-plugin-esm.sh

Weekly Downloads

7

Version

0.0.1

License

ISC

Unpacked Size

13 kB

Total Files

9

Last publish

Collaborators

  • daniakash