npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vite-plugin-legacy

v2.1.0

Published

Generate a legacy bundle

Downloads

23,120

Readme

vite-plugin-legacy

Easily generate a legacy bundle for outdated browser support.

Features

  • Based on @babel/preset-env
    Easily customize which browsers you want to support (via the targets option).

  • Automatic feature detection
    The injected <script> that decides which bundle to load will check whether ES modules (eg: import) and the expected JavaScript version (determined by esbuildTarget in your Vite config) are supported by the user's browser. If not, the legacy bundle is loaded instead!

  • Hassle-free polyfills
    With the help of Polyfill.io, you can add polyfills without npm install. Just add "InteractionObserver" to the polyfills array, and the legacy bundle will automatically load it. Learn more

  • Usage-based core-js@3 inlining
    When corejs: true is passed, modern features are detected by Babel, and only the necessary core-js polyfills are embedded in the legacy bundle.

  • Sourcemap support
    Set sourcemap: true in your Vite config to easily debug your production bundles.

  • Minify support
    When minify is truthy in your Vite config, the legacy bundle (which includes any core-js polyfills) is minified with terser. Customize the minifier via the terserOption in your Vite config.

  • Production only
    The legacy bundle is only generated when vite build runs, because Vite never bundles during development (that's the whole point of Vite).

 

Example

import legacyPlugin from 'vite-plugin-legacy'

export default {
  plugins: [
    // The default options are listed below. Pass nothing to use them.
    legacyPlugin({
      // The browsers that must be supported by your legacy bundle.
      // https://babeljs.io/docs/en/babel-preset-env#targets
      targets: [
        '> 0.5%',
        'last 2 versions',
        'Firefox ESR',
        'not dead',
      ],
      // Define which polyfills your legacy bundle needs. They will be loaded
      // from the Polyfill.io server. See the "Polyfills" section for more info.
      polyfills: [
        // Empty by default
      ],
      // Toggles whether or not browserslist config sources are used.
      // https://babeljs.io/docs/en/babel-preset-env#ignorebrowserslistconfig
      ignoreBrowserslistConfig: false,
      // When true, core-js@3 modules are inlined based on usage.
      // When false, global namespace APIs (eg: Object.entries) are loaded
      // from the Polyfill.io server.
      corejs: false,
    })
  ]
}

 

Polyfills

The polyfills option lets you define which APIs to load from the Polyfill.io server. If you're using TypeScript in your Vite config, you'll get auto-completion for all supported polyfills. The list is incomplete, so open an issue if there's a missing polyfill that you need.

Polyfills related to global namespaces (eg: Object.entries) are inferred from the esbuildTarget in your Vite config, which defaults to es2020 if undefined. Be careful not to use an API that your target does not support. For example, don't use Promise.prototype.finally if your target is older than es2018. You can use this tool to know when APIs were introduced.

By default, this plugin does not check if your bundle is using the global namespace APIs before importing their polyfills from Polyfill.io. If you want that, you can pass corejs: true to the plugin, which only includes the polyfills your legacy bundle needs. The downside of using corejs: true is that polyfills are inlined instead of being loaded separately, which allows for the browser to reuse cached polyfills between websites. Even if you set corejs to true, you can still use the polyfills option if you need APIs not supported by core-js (like IntersectionObserver).

The polyfills option allows any of the values in this list.