“APP APP APP APP AUTO AGRESH” Respostas de código

Recarro de elétrons 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

Atualização automática de desenvolvimento de elétrons js

npm i -D electron-reload

main.js: 

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

...rest of the code
KostasX

APP APP APP APP AUTO AGRESH

const electron = require('electron')

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

Respostas semelhantes a “APP APP APP APP AUTO AGRESH”

Perguntas semelhantes a “APP APP APP APP AUTO AGRESH”

Mais respostas relacionadas para “APP APP APP APP AUTO AGRESH” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código