inject-lr-script-stream

v1.1.1
Streamingly inject a livereload script into html
stream inject livereload html watch

inject-lr-script-stream

NPM version build status Test coverage Downloads js-standard-style

Streamingly inject a livereload script into html.

Installation

$ npm install inject-lr-script-stream

Usage

const lr = require('inject-lr-script-stream')
const filed = require('filed')
const http = require('http')

http.createServer((req, res) => {
  filed(__dirname + '/index.html')
    .pipe(lr())
    .pipe(res)
})

API

lr(opts)

Create a duplex inject stream. Expects a <body> tag to be present. The following opts are available:

  • protocol: defaults to http
  • port: livereload port, defaults to 35729
  • host: livereload host, defaults to localhost

See Also

License

MIT

npm i inject-lr-script-stream

Metadata

  • MIT
  • Whatever
  • Unknown
  • released 9/29/2015

Downloads

Maintainers