gpt4 book ai didi

electron - 如何防止 Electron 中的多个实例

转载 作者:行者123 更新时间:2023-12-03 10:31:18 25 4
gpt4 key购买 nike

我不知道这是否可能,但我不妨给它一个机会并询问。
我正在做一个 Electron 应用程序,我想知道一次是否可能只有一个实例。

我找到了这个 gist但我不确定使用它很热。有人可以分享一些更好的主意吗?

var preventMultipleInstances = function(window) {
var socket = (process.platform === 'win32') ? '\\\\.\\pipe\\myapp-sock' : path.join(os.tmpdir(), 'myapp.sock');
net.connect({path: socket}, function () {
var errorMessage = 'Another instance of ' + pjson.productName + ' is already running. Only one instance of the app can be open at a time.'
dialog.showMessageBox(window, {'type': 'error', message: errorMessage, buttons: ['OK']}, function() {
window.destroy()
})
}).on('error', function (err) {
if (process.platform !== 'win32') {
// try to unlink older socket if it exists, if it doesn't,
// ignore ENOENT errors
try {
fs.unlinkSync(socket);
} catch (e) {
if (e.code !== 'ENOENT') {
throw e;
}
}
}
net.createServer(function (connection) {}).listen(socket);;
});
}

最佳答案

现在有一个新的 API:requestSingleInstanceLock

const { app } = require('electron')
let myWindow = null

const gotTheLock = app.requestSingleInstanceLock()

if (!gotTheLock) {
app.quit()
} else {
app.on('second-instance', (event, commandLine, workingDirectory) => {
// Someone tried to run a second instance, we should focus our window.
if (myWindow) {
if (myWindow.isMinimized()) myWindow.restore()
myWindow.focus()
}
})

// Create myWindow, load the rest of the app, etc...
app.on('ready', () => {
})
}

关于electron - 如何防止 Electron 中的多个实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35916158/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com