标签为 "electron" 的博客
2019年5月24日

介绍 org开源 com私有 步骤 创建GH_TOKEN 打开 https://github.com/settings/tokens 点击 Personal access tokens 点击 Generate new token 勾选repo选项框,并输入名字,点击Generate token 生成的token只会显示一次,复制保存以备用 关联github账号 打开 https://travis-ci.org 使用github登录 关联github repo 打开 https://tr

2019年4月30日

介绍 A configurable and versatile update server for all your Electron apps https://github.com/atlassian/nucleus 部署 生成gpg https://help.github.com/en/articles/generating-a-new-gpg-key http://irtfweb.ifa.hawaii.edu/~lockhart/gpg/ https://github.com/atlass

2019年4月25日

问题描述 在electron的异步方法中通过page.evaluate()执行代码时出现异常 https://github.com/GoogleChrome/puppeteer/issues/1665 解决方案 将evaluate中包含的代码用`包裹起来,并执行。 # before await page.evaluate(async() => { console.log('1') })) # after await page.evaluate(`(async() => { con

2019年4月24日

介绍 Electron是GitHub开发的一个开源框架。它允许使用Node.js和Chromium完成桌面GUI应用程序的开发。Electron现已被多个开源Web应用程序用于前端与后端的开发,著名项目包括GitHub的Atom和微软的Visual Studio Code。 https://electronjs.org 示例 https://github.com/focusLogin/focuslogin_frontend 使用说明 设置cookie const cookie = { url:

1