Vite


See here for a good explanation of what Vite is and what it does. In summary:

  • Vite gives a dev server that allows for instant updating on changes while preserving state.
  • Vite “bundles” all of your modularised code into a format a browser can handle, which can then be use by the web server.
Links to this page
  • Webhosting

    Writing all the scripting for a webpage in one javascript file is absolute hell for any decently sized page. As such, module bundlers exist to allow you to write your code in a modular fashion, that is then bundled into one file. See Vite for an example of how a module bundler works.