New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

electron-watcher-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electron-watcher-webpack-plugin

Live reload Electron main and renderers processes with webpack plugin

latest
Source
npmnpm
Version
3.0.2
Version published
Maintainers
1
Created
Source

Installation

npm install electron-watcher-webpack-plugin --save

Usage

Add to webpack.config.js plugins array:

const path = require("path");
const { ElectronWatcherWebpackPlugin } = require("electron-watcher-webpack-plugin");
// ...
module.exports = {
  // ...
  plugins: [
    // ...
    new ElectronWatcherWebpackPlugin({
      // Absolute path to directory where node_modules placed. Required
      root: __dirname,
      // List of globs to watch for hard reload. Required
      watch: [path.resolve(__dirname, "./src/main")],
      // Launch electron only once. Default: true. Optional
      once: true,
      // Absolute path to nodemon executable. Default: root/node_modules/.bin/nodemon. Optional
      nodemon: path.resolve(__dirname, "node_modules", ".bin", "nodemon"),
      // Absolute path to electron executable. Default: root/node_modules/.bin/electron. Optional
      electron: path.resolve(__dirname, "node_modules", ".bin", "electron"),
      // Options to pass to `spawn` process. Optional
      options: {
        cwd: path.resolve(__dirname, "..")
      }
    }),
    // ...
  ];
  // ...
}

And watch files changes inside main.js:

const { app, BrowserWindow } = require("electron");
// ...
require("electron-watcher-webpack-plugin").watch({
  // List of globs for hard refresh
  hard: [path.resolve(__dirname, "../main")],
  // List of globs for soft refresh
  soft: [path.resolve(__dirname, "../renderer")]
  // Watching enabled only in dev environment, but you can force watching anytime. Default: false. Optional
  forceWatch: false
});
// ...

Keywords

electron

FAQs

Package last updated on 21 Dec 2020

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