Code Monkey home page Code Monkey logo

Comments (2)

mihar-22 avatar mihar-22 commented on May 18, 2024

Hey @gottlike nah that size is right, the UMD exports are legacy files so it's been transpiled with Babel to work with IE11. The files you want to be looking at are lite.esm.js and lite.esm.min.js since they are for modern browsers. In your application you would use the module/nomodule pattern so something like this

<script type="module" src="https://cdn.jsdelivr.net/npm/@vime-js/lite/dist/lite.esm.min.js"></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/@vime-js/lite/dist/lite.min.js" defer></script>

Even for IE11 the file compresses well down to 25.8 kB. In addition, when you're using a bundler like Webpack or Rollup you would automatically pull in lite.esm.js. If you needed IE11 support for your web app you could transpile it with Babel, and then you would put this in a separate "chunk" so it's loaded very infrequently and cached. Frameworks like Next.js and Nuxtjs automatically do this via code-splitting. Therefore the majority of the size of lite.min.js is irrelevant I'd say.

from vime.

gottlike avatar gottlike commented on May 18, 2024

Okay, makes sense.. thanks for explaining!

from vime.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.