{"library":"rollup-plugin-live-server","title":"rollup-plugin-live-server","description":"A Rollup plugin that wraps live-server to provide a webpack-dev-server-like experience with live reload. Current stable version is 2.0.0. Release cadence is low (last release 2019). Key differentiator: leverages live-server's mature feature set (HTTPS, mounting, open browser, etc.) without reinventing the wheel. Unlike rollup-plugin-serve, it provides live reload via WebSocket injection into HTML files. Suitable for development builds but not actively maintained.","language":"javascript","status":"maintenance","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-live-server"],"cli":null},"imports":["import { liveServer } from 'rollup-plugin-live-server'","const { liveServer } = require('rollup-plugin-live-server')","import type { Options } from 'rollup-plugin-live-server'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// rollup.config.js\nimport { liveServer } from 'rollup-plugin-live-server';\n\nexport default {\n  input: 'src/index.js',\n  plugins: [\n    liveServer({\n      port: 8001,\n      host: '0.0.0.0',\n      root: 'public',\n      file: 'index.html',\n      open: false,\n      wait: 500,\n    }),\n  ],\n  output: {\n    dir: 'dist',\n    format: 'es',\n  },\n};","lang":"javascript","description":"Shows how to configure and use the plugin in a Rollup config, including common options like port, root, and file.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}