Gathering detailed insights and metrics for @kooneko/livereload-webpack-plugin
Gathering detailed insights and metrics for @kooneko/livereload-webpack-plugin
Gathering detailed insights and metrics for @kooneko/livereload-webpack-plugin
Gathering detailed insights and metrics for @kooneko/livereload-webpack-plugin
npm install @kooneko/livereload-webpack-plugin
Typescript
Module System
Node Version
NPM Version
47.1
Supply Chain
68.1
Quality
72.2
Maintenance
100
Vulnerability
99.6
License
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
ISC License
5 Stars
16 Commits
1 Forks
1 Watchers
1 Branches
1 Contributors
Updated on Feb 01, 2024
Minified
Minified + Gzipped
Latest Version
1.2.1
Package Id
@kooneko/livereload-webpack-plugin@1.2.1
Unpacked Size
22.07 kB
Size
6.82 kB
File Count
16
NPM Version
6.14.10
Node Version
14.15.4
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
This plugin for Webpack is based from statianzo's plugin : webpack-livereload-plugin
This plugin is compatible wih Webpack 4 & Webpack 5
Install the package
1npm install --save-dev @kooneko/livereload-webpack-plugin
Add the plugin to your webpack config
1// webpack.config.js 2 3var LiveReloadWebpackPlugin = require('@kooneko/livereload-webpack-plugin'); 4 5module.exports = { 6 plugins: [ 7 new LiveReloadWebpackPlugin(options) 8 ] 9}
Add a script tag to your page pointed at the livereload server
1<script src="http://localhost:35729/livereload.js"></script>
Option | Default | Description |
---|---|---|
protocol | protocol of the page, either http or https | Protocol for livereload <script> src attribute value |
port | 35729 | The desired port for the livereload server. If you not define port, an available port will be searched for, starting from 35729 |
hostname | hostname of the page, like localhost or 10.0.2.2 | The desired hostname for the appended <script> (if present) to point to |
quiet | false | Prevent message " Live reload listening on port ..." from appearing in the console |
appendScript | false | Append livereload <script> automatically to <head> |
delay | 0 | amount of milliseconds by which to delay the live reload (in case build takes longer) |
ignore | null | RegExp of files to ignore. Null value means ignore nothing. It is also possible to define an array and use multiple anymatch patterns |
Yes, there's already webpack-dev-server
that handles live reloading
and more complex scenarios. This project aims to solve the case where
you want assets served by your app server, but still want reloads
triggered from webpack's build pipeline.
If you set key
, cert
, or pfx
options, they'll get passed through to
tiny-lr as options and it will
serve over HTTPS. You'll also also set protocol
to https
.
If this slows your build process you could set liveCSS
and liveImg
to false
to prevent multiple reloads.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/14 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
29 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-05-26
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More