@elderjs/browser-reload

0.1.7 • Public • Published

New Location:

This plugin has moved to @elderjs/plugin-browser-reload

See all of the latest plugins here at: Elder.js plugins

Legacy Docs: Elder.js: Browser Reload

Designed to work with the Elder.js Template and integrate browser reloading.

It works by adding a websocket on bootstrap. It then sets up a listener to that websocket on the client.

When the server is restarted due to a code change, the browser will restart as well.

Install

npm install --save @elderjs/plugin-browser-reload

Config

Once installed, open your elder.config.js and configure the plugin by adding @elderjs/plugin-browser-reload to your plugin object.

plugins: {
  '@elderjs/plugin-browser-reload': {} // activates the plugin
}

Customizing the Defaults

Below are the default settings of the plugin. You can adjust them to your needs.

plugins: {

  '@elderjs/plugin-browser-reload': {
    port: 8080, // the port the websocket server should run on.
    delay: 200, // the delay in ms the browser should wait after the server disappears.
    preventReloadQS: 'noreload', // if 'noreload' is in the query string it won't reload that page. Good for CSS editing in the browser.
    retryCount: 50, // number of tries the browser will check to see if the server is up before giving up.
  },

}

Package Sidebar

Install

npm i @elderjs/browser-reload

Weekly Downloads

1

Version

0.1.7

License

MIT

Unpacked Size

5.38 kB

Total Files

3

Last publish

Collaborators

  • vonadz