rollup-plugin-auto-reload
v1.0.3
Published
Rollup plugin to automatically reload pages and bundles when changes are made
Downloads
943
Maintainers
Readme
Rollup Auto Reload Plugin
This rollup plugin automatically reloads the web page when rollup is running in watch mode and any changes are made on bundles. It works on any server as well as on the local file system.
Install
npm i --save-dev rollup-plugin-auto-reload
yarn add --dev rollup-plugin-auto-reload
Options
| Option | Values | Default |
|-----------|-----------------------------------|-------------|
| host
| host name or IP address as string | localhost
|
| port
| any number between 0 - 65,535 | 0
|
Host
The host can be any legal host name or IP address. If you run your server and client on the same machine, you can keep the default value localhost
.
Port
The port can be any legal port number between 0 - 65,535. If the port is set to 0
, a random available port will be used.
Getting Started
- Install the plugin:
npm i --save-dev rollup-plugin-auto-reload
yarn add --dev rollup-plugin-auto-reload
- Add the plugin in your
rollup.config.js
orrollup.config.ts
:
import { autoReload } from "rollup-plugin-auto-reload"
export default {
input: "src/index.js",
output: {
file: "dist/index.js",
format: "iife",
},
plugins: [
autoReload({ /* place your options here */ })
],
}
Example
You can find a fully working minimal example project in the demo folder.