
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
rollup-plugin-livereload
Advanced tools
Rollup plugin for LiveReload that watches the bundle and reloads the page on change
npm install --save-dev rollup-plugin-livereload
// rollup.config.js
import livereload from 'rollup-plugin-livereload'
export default {
entry: 'entry.js',
dest: 'bundle.js',
plugins: [livereload()],
}
To make it a real dev-server, combine this plugin with rollup-plugin-serve.
// rollup.config.js
import serve from 'rollup-plugin-serve'
import livereload from 'rollup-plugin-livereload'
export default {
entry: 'entry.js',
dest: 'bundle.js',
plugins: [
serve(), // index.html should be in root of project
livereload(),
],
}
By default, it watches the current directory. If you also have css output, pass the folder to which the build files are written.
livereload('dist')
// --- OR ---
livereload({
watch: 'dist',
verbose: false, // Disable console output
// other livereload options
port: 12345,
delay: 300,
https: {
key: fs.readFileSync('keys/agent2-key.pem'),
cert: fs.readFileSync('keys/agent2-cert.pem')
}
})
Options are always passed to livereload.createServer()
Please see CHANGELOG for more information what has changed recently.
Contributions and feedback are very welcome.
To get it running:
npm install
npm run build
The MIT License (MIT). Please see License File for more information.
FAQs
Rollup plugin for LiveReload that watches the bundle and reloads the page on change
The npm package rollup-plugin-livereload receives a total of 52,386 weekly downloads. As such, rollup-plugin-livereload popularity was classified as popular.
We found that rollup-plugin-livereload demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.