Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

inject-lr-script-stream

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

inject-lr-script-stream

Streamingly inject a livereload script into html

latest
Source
npmnpm
Version
1.1.1
Version published
Maintainers
1
Created
Source

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

Keywords

stream

FAQs

Package last updated on 29 Sep 2015

Did you know?

Socket

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