Socket
Socket
Sign inDemoInstall

koa-livereload

Package Overview
Dependencies
94
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    koa-livereload

Livereload script loader for Koa


Version published
Weekly downloads
1.1K
increased by6.22%
Maintainers
1
Install size
924 kB
Created
Weekly downloads
 

Readme

Source

koa-livereload Build Status

koa middleware for adding livereload script to the response body. no browser plugin is needed.

install

npm install koa-livereload --save-dev

How to use

this middleware can be used with a LiveReload server e.g. grunt-contrib-watch.

koa-livereload itself does not serve the livereload.js script.

example

  app.use(livereload());

example with option

  app.use(livereload({
    // if you change livereload server port, set "port" option
    port : 30211
  }));
  app.use(livereload({
    // if you want to set livereload.js directly, set the "src" option
    src  : "http://localhost:35729/livereload.js?snipver=1"
  }));
  app.use(livereload({
    // if you want certain paths to be excluded from injection (i.e. Angular partials/views path)
    excludes  : ['/partials']
  }));

credits

tests

make test

license

MIT

Keywords

FAQs

Last updated on 08 Jun 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc