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-live-preview

v0.3.2

Published

Vite build with preview.

Downloads

1,376

Readme

Vite Live Preview

Vite build with preview.

Getting Started

First, please understand that live preview does not support HMR. If you want to use HMR, you'll need to stick to the Vite dev server. This plugin starts a preview server when building the project with file watching. The preview server is augmented to reload the browser on rebuild.

Install this package (and its Vite peer dependency) in your project.

npm install --save-dev vite vite-live-preview

Once installed, you can either use the plugin or the CLI.

Plugin

Add the plugin to your Vite configuration.

import { defineConfig } from 'vite'
import livePreview from 'vite-live-preview'

export default defineConfig({
  plugins: [livePreview({ /* (optional) plugin config */ })],
  preview: { /* (optional) preview server config */ },
})

Start a build with file watching.

npx vite build --watch

Any build with file watching enabled will start a preview server.

To only start the preview server when building for development, use the following configuration.

export default defineConfig((env) => {
  return {
    plugins: [
      env.mode === 'development' && livePreview(),
    ],
  },
});

Now, you would need to add the --mode=development option to the build command for the preview server to start.

npx vite build --watch --mode=development

(Deprecated) You can also use the --mode=preview option instead of --watch. Any mode that starts with preview will work. This is legacy behavior, and it will stop working in a future release. Building with --watch is the recommended way to use this plugin.

Option reload: boolean

Allow or disable automatic browser reloading on rebuild. Set it to false to require manual browser reloading. The default is true.

Option config: LivePreviewConfig

Provide configuration overrides that will be deeply merged when live preview is enabled. This can be used to set options like build.mode, build.sourcemap, or outDir for the preview build.

livePreview({
  config: {
    build: {
      mode: 'development',
      sourcemap: true,
      outDir: 'dist-preview',
    },
  },
})

Option plugins: PluginOption[]

Provide plugins that will only be added to the preview server configuration. Only plugins which affect the Vite preview server make sense here.

Plugins in your main (build) configuration are not inherited by the preview server. See also the JavaScript API Limitations section.

CLI

Start the live preview.

npx vite-live-preview

Option --reload [boolean]

Allow or disable automatic browser reloading on rebuild. The default is true.

Use --reload false to disable automatic reloading. Manually reloading the page after a rebuild will still show the updated content.

Vite Preview Options

All Vite preview command options are also supported.

JavaScript API Limitations

If you use the JavaScript API build() command, the preview server will not inherit any plugins that are added "inline".

await build({
  plugins: [
    // Plugins included in this array are "inline" (not loaded from a
    // config file), and will not be inherited by the preview server.
    livePreview({
      plugins: [
        // You can re-add the plugins here if needed, as well as any
        // additional preview server specific plugins.
      ],
    }),
  ],
})

The common convention for plugins is to provide a "factory" function which returns the plugin instance. This allows plugins to accept options, but also provides a closure where a plugin instance can share state between individual hook methods. This is commonly used to save parts of the resolved configuration for use in later hooks, but it can be used for any plugin state.

Unfortunately, the factory return value is added to the plugins array, not the plugin factory functions themselves. So, there is no way to create new instances of the plugins with independent state before passing them to the preview command. Passing the build command's plugin instances to the preview command would result in plugin hooks being called out of order or more times than expected, and any shared state would be shared between the two commands.

Debugging

The vite -d, --debug [feat] option is supported, and the following feature names are available for this tool.

  • live-preview: General debugging information.
  • live-preview-request: Log preview server requests.

The Problem

There are cases where the Vite dev server is not adequate. It does not bundle the project, and it relies on the browser to load ES modules directly. This can be slow (especially with "barrel" files), and does not accurately represent the final build.

The Vite preview command is a good alternative, but it does not do an initial build or automatically rebuild on file changes.

This tool is roughly equivalent to running vite build --watch & vite preview to start a build (with file watching), and a preview server in parallel. Additionally, browser page reloads will also be triggered after each rebuild.

Related Github Issues