“Электронное приложение Auto обновление” Ответ

Электрон перезагрузка html

const {getCurrentWindow, globalShortcut} = require('electron').remote;

var reload = ()=>{
  getCurrentWindow().reload()
}

globalShortcut.register('F5', reload);
globalShortcut.register('CommandOrControl+R', reload);
// here is the fix bug #3778, if you know alternative ways, please write them
window.addEventListener('beforeunload', ()=>{
  globalShortcut.unregister('F5', reload);
  globalShortcut.unregister('CommandOrControl+R', reload);
})
Clever Centipede

Electron JS Development Auto Refresh

npm i -D electron-reload

main.js: 

const electron = require('electron')
require('electron-reload')(__dirname);

...rest of the code
KostasX

Электронное приложение Auto обновление

const electron = require('electron')

// Enable live reload for all the files inside your project directory
require('electron-reload')(__dirname);
Poised Porpoise

Ответы похожие на “Электронное приложение Auto обновление”

Вопросы похожие на “Электронное приложение Auto обновление”

Больше похожих ответов на “Электронное приложение Auto обновление” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования