electron-builder 相关问题

Electron Builder是一个开源解决方案,用于分发和自动更新Electron NPM应用程序。关于a)使用Electron Builder分发或更新Electron应用程序,或b)使用Electron Builder项目源的问题,请使用此标记。



用电子构建器签名DLL文件

我认为ffmpeg.dll,libegl.dll和libglesv2.dll是铬和节点依赖性,而sqlite3.dll,libeAy32.dll是我们依赖之一的依赖性。

回答 1 投票 0


如何创建一个固定的标头,页脚和侧边栏布局,并在Electron中使用可滚动内容 我正在研究具有特定布局要求的电子应用程序,并遇到不必要的滚动条问题。我需要标题,页脚和导航侧栏以保持固定在POS中...

body { margin: 0; padding: 0; display: grid; grid-template-areas: "header header" "nav content" "footer footer"; grid-template-rows: 100px 1fr 20px; /* Header height, content taking the rest, footer height */ grid-template-columns: 150px 1fr; /* Navigation width, content taking the rest */ min-height: 100vh; font-family: Arial, sans-serif; } #header { grid-area: header; background: #f0f0f0; padding: 10px; display: flex; align-items: center; justify-content: center; gap: 20px; position: fixed; top: 0; width: 100%; height: 100px; } #nav { grid-area: nav; background: #f0f0f0; /* Different color to distinguish nav area */ top:60px; bottom:30px; width: 150px; position:absolute; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box; left:0; position: fixed; } #content { grid-area: content; background: #f0f0f0; padding: 20px; /* Padding for content for better readability */ overflow-y: auto; /* Enables scrolling if the content is taller than the screen */ } #footer { grid-area: footer; background: #f0f0f0; /* Matching the header */ padding: 10px; /* Consistent padding with the header */ width: 100%; position: fixed; bottom: 0; height: 30px; }

回答 1 投票 0


NSIS:如何基于选定的语言加载不同的许可证文件

我试着用电子构建器制作NSIS安装程序。我需要根据用户根据选定的语言显示不同的许可证文件。 package.json “ devDectiencies”:{ “电子和Quo ...

回答 2 投票 0



无法使用 Electron-builder 签署 mac 电子应用程序

我一整天都在努力解决这个问题,似乎在大多数情况下这应该“有效”,但对我来说却不起作用。 我正在尝试使用 Electron-builder 在 mac 上签署 mac 应用程序。该应用程序...

回答 1 投票 0

自己的js逻辑代码的Vite-Electron配置

我是 Electron-vite 和 React 的新手。我的项目有一个http节点服务器进程。所有相关文件都放置在服务器命名的文件夹中。 vite文件夹结构为main、renderer和preload。我有...

回答 1 投票 0

在构建 Electron 应用程序时找不到任何可使用的 Python 安装 + node-gyp 无法重建

我正在尝试构建我的 Electron 应用程序,但出现以下错误: ⨯ 错误:找不到任何可使用的 Python 安装 ... node-gyp 无法重建“...node_modules\@parcel\watcher” 我

回答 1 投票 0

Electron的registerHttpProtocol在开发中可以工作吗?

我正在尝试使用电子注册自定义协议。我希望它成为网站可以用来提供 api 密钥的重定向位置(例如 myprotocol://example/payload=api-key)。我一直在用

回答 1 投票 0

如何使用 Electron-builer 在 Electron 应用程序中包含 tailwindcss 样式?

我正在开发一个简单的电子应用程序。我使用 React 和 vite 作为应用程序的前端。将 tailwindcss 添加到项目后,应用程序在构建为产品时仅显示一个白色页面

回答 1 投票 0

Electron 应用程序进程以应用程序描述命名

在为Windows制作基于Electron的桌面应用程序时,我注意到在使用电子构建器构建它并启动可执行文件(便携式)后,任务管理器中的进程名称是应用程序的

回答 1 投票 0

无法找到更新包 - Electron

Electron-Builder 版本:22.14.2 节点版本:16.14.2 电子版本:13.1.9 电子类型(当前、测试版、夜间):当前 目标:MacOS,但我需要 WML [错误:无法找到更新包...

回答 1 投票 0

如何禁用Svelte组件HTML部分的svelte-check错误?

我有一个用 Svelte 5 编写的组件,使用 $props() rune。 LogActions.svelte //@ts-预期错误 让 { onSave }: { (): void } = $props() ; ...

回答 1 投票 0

如何让我的电子应用程序出现在开始菜单窗口中

我有电子应用程序的示例,只是为了进行 POC。 但每当我尝试构建时。是的,安装程序在那里并设法安装我的应用程序,并成功安装在我的Windows上。 但我的问题...

回答 1 投票 0

Windows:电子通知不显示应用程序徽标,但在其他任何地方都显示

应用程序徽标在其他任何地方都正确显示,但在通知部分显示空徽标 我知道您可以通过图标属性 l...

回答 2 投票 0

在 Windows、Mac 和 Linux 上分发 Electron 应用程序

我花了周末时间尝试 Electron,这在我的脑海中引起了一些问题和困境。 我克隆了以下 Github 存储库来进行测试: 电子 vue 打字稿启动器 T...

回答 2 投票 0

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.