inject-lr-script-stream

1.1.1 • Public • Published

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

Package Sidebar

Install

npm i inject-lr-script-stream

Weekly Downloads

2

Version

1.1.1

License

MIT

Last publish

Collaborators

  • yoshuawuyts