Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@dumlj/crx-live-reload-webpack-plugin
Advanced tools
Livereload over SSE for develop Chrome Extension.
Livereload over SSE for develop Chrome Extension.
Since Chrome extensions can only load local files, devServer hot reload does not work (only the browser can be reloaded or the scripts can be re-executed remotely). We need to use scripts to make it reload automatically, which contains the background
and content-script
modules.
background
and content-script
can use reboot capabilities.# use npm
$ npm install --dev @dumlj/crx-live-reload-webpack-plugin
# use yarn
$ yarn add --dev @dumlj/crx-live-reload-webpack-plugin
# use pnpm
$ pnpm add @dumlj/crx-live-reload-webpack-plugin -D
import { CrxLiveReloadWebpackPlugin } from '@dumlj/crx-live-reload-webpack-plugin'
export default {
mode: 'development',
entry: {
background: path.join(__dirname, 'background.ts'),
contentScript: path.join(__dirname, 'contentScript.ts'),
},
plugins: [
...new CrxLiveReloadWebpackPlugin({
// enter devServer host and port
// chrome extension can not mount files online.
host: '127.0.0.1',
port: 8080,
}),
],
devServer: {
hot: true,
// livereload can not reboot background.js, close it.
liveReload: false,
devMiddleware: {
// as you know
writeToDisk: true,
},
},
}
Since I can't Mock Chrome, please open the console to view the logs.😅 And try to change background.js
or contentScript.js
files.
Webpack DevServer port is 8080
, Static Server port is 3000
. In real environment, Chrome Extension will mount ./build
folder.
@dumlj/crx-live-reload-webpack-plugin └─┬ @dumlj/seed-webpack-plugin ├─┬─ @dumlj/feature-updater │ ├─── @dumlj/shell-lib │ ├─── @dumlj/util-lib │ └─── @dumlj/mock-libPRIVATE └─── @dumlj/mock-libPRIVATE
FAQs
Livereload over SSE for develop Chrome Extension.
We found that @dumlj/crx-live-reload-webpack-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.