All
PC硬件
经验记录
生活杂谈
日常踩坑
前端技术
测试
2024-07-05
经验记录
electron
91
electron-forge结合electron-updater实现在linux系统中.deb包的自动更新功能
  • 由原来直接引入autoUpdater改为引入DebUpdater在创建autoUpdater实例。
// import { autoUpdater } from 'electron-updater';
import { DebUpdater } from 'electron-updater';

const autoUpdater = new DebUpdater({
  provider: 'generic',
  url: 'http://172.20.0.6:5173'
})

autoUpdater.checkForUpdatesAndNotify();
Back
© 2022 BBF Powered byNext.js&Prisma&Tailwind.css