Electron的安装与 hello word

1.NodeJs安装

Nodejs中文网下载下载安装包:http://nodejs.cn/download/

一系列下一步之后,安装完成,自带管理工具NPM.可以通过它下载一系列模块。

2.Electron安装

安装Electron的过程比较坎坷,尝试了三次才成功。

1.直接cmd 敲命令

1 npm install electron -g

,卡了一会,提示超时,安装失败.

2.在网上搜了一下,有人说因为服务器在国外,需要换源。好吧,那就安装一个Nrm 用来切换Npm的数据源,敲命令

npm install nrm -g

结果跟安装electron一样,提示超时,安装失败。

3.继续百度,发现淘宝有个cnpm可以用,抱着试试看的心态,输入命令

npm install -g cnpm --registry=https://registry.npm.taobao.org

cnpm install -g electron

OK ,安装成功!

3.Electron hello word

1.新建一个项目文件夹 test

2.在文件夹中新建三个文件

package.json

main.js

index.html

package.json:

文件名是固定的,启动项目时,第一个找的就是它,里面定义了主进程的文件路径,我们这里的主进程是main.js.

main.js :

里面创建electron窗口,以及初始化的操作.将html页面加载到窗口中,我们这里的页面是index.html

index.html:

就是html页面

介绍完毕,下面开始贴代码

package.json

{
"name" : "your-app",
"version" : "0.1.0",
"main" : "main.js"
}

index.html

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</body>
</html>

main.js

const electron = require(‘electron‘)
// Module to control application life.
const app = electron.app
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow

// Keep a global reference of the window object, if you don‘t, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow

function createWindow () {
// Create the browser window.
mainWindow = new BrowserWindow({width: 800, height: 600})

// and load the index.html of the app.
mainWindow.loadURL(`file://${__dirname}/index.html`)

// Open the DevTools.
//mainWindow.webContents.openDevTools()

// Emitted when the window is closed.
mainWindow.on(‘closed‘, function () {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null
})
}

// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on(‘ready‘, createWindow)

// Quit when all windows are closed.
app.on(‘window-all-closed‘, function () {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== ‘darwin‘) {
app.quit()
}
})

app.on(‘activate‘, function () {
// On OS X it‘s common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow()
}
})

// In this file you can include the rest of your app‘s specific main process
// code. You can also put them in separate files and require them here.

时间: 2024-11-07 10:24:32

Electron的安装与 hello word的相关文章

electron的安装

1.安装 node.js https://nodejs.org/en/ 2.安装asar npm install -g asar 3.安装atom https://atom.io/ 4.安装electron https://github.com/atom/electron/releases  我下载的是 electron-v0.36.6-win32-x64.zip 或者使用命令行:npm install electron-prebuilt -g 两种办法,都没能把electron下载下来...

1、Visual Studio Code安装及Hello Word

一.环境初始化 1.下载 Visual Studio Code对应版本安装 2.下载.NET Core 2.0 SDK安装 3.安装Mono Debug 完成后界面如下: 二.创建控制台Hello Word项目 1.先创建一个文件夹 如 E:\helloword 2.进入该文件夹 键入命令 dotnet new console,会创建一个控制台应用程序, 完成后创建文件如下: 3.打开VsCode,打开对应项目文件夹,会将文件夹中项目加载,首次加载时会有提示,点击Yes添加编译和调试 项目文件夹

01-spring安装,hello word

环境搭建 第一步:安装spring 可以参考这个:http://blog.csdn.net/boredbird32/article/details/50932458 安装成功后,重启后有下面这个Spring IDE就表示安装成功. 或者打开所选项,会有spring 第二步:把以下jar包导入到classPath下: 新建一个java工程,里面建一个文件夹lib,存放jar包 从该地址下载commons-logging:http://commons.apache.org/proper/common

electron 无法安装

犯了升级强迫症,之前用的ELECTRON5 ,之前 用的 vue-cli-plugin-electron-builder ,今天升级到1.4.5,然后把electron也升级到了8.0.0,安装的时候死活安装不上,分析源码发现在下载 electron 的压缩包的时候, taobao镜像的地址中少个v, github的下载地址中多个 v,导致用镜像下载压缩包的时候找不到地址,404错误. 研究源码后给 .npmrc 配置文件中添加了一行新的配置,完美解决问题. 配置如下 registry=http

RabbitMQ安装与Hello Word!

环境:CentOS6.4 必须安装erlang 先去官网下载 下linux源码版 版本 otp_src_18.1 然后./configure 会报个小错 Makefile:248: /usr/local/otp_src_18.1/make/x86_64-unknown-linux-gnu/otp_ded.mk: No such file or directory error: No curses library functions found 然后需要安装 sudo yum install nc

asp.net页面读取word文档内容显示

用asp.net实现对指定word文档内容的读取显示该如何实现?比如左边读取指定文件夹中所有的word文档,以文档的标题作为链接,点击文档标题则在右边某位置显示出该word文档中的内容(包括字体样式,图片显示等). 可以这样实现: 操作WORD配置说明 引入:Word的对象库文件“MSWORD.OLB”(word 2000为MSWORD9.OLB) 1.运行Dcomcnfg.exe 2.组件服务――计算机――我的电脑――DCOM配置――找到microsoft word 文档 3.点击属性 4.选

【Electron】Electron在Windows下的环境搭建

Electron作为一种用javascript写桌面程序的开发方式,现在已经被大众接受.下面就介绍如何在windows(>win7)下快速搭建Electron开发环境. 1. nodejs 的安装 从nodejs 下载最新版本的windows安装程序进行安装,我下载的是v6.9.1,安装时一路默认即可,这个安装会把nodejs和npm配置到系统PATH中,这样在命令行的任何位置都可以直接用node执行nodejs,用npm执行npm命令. 检查nodejs是否安装成功可以这样查看: 另外,因为可

这样操作后,在Word中直接调用MathType没问题

MathType作为强大的公式编辑器,其兼容性非常好,可以兼容800+应用程序,使用最频繁的就是在Word中调用,刚开始操作的时候,可能会有点问题,不能直接调用MathType,下面就来分析下该怎样操作,才能解决操作失败问题. 很多用户已经发现在使用Word 2013编辑文档时MathType无法直接调用,但是点击文档中的公式时能够跳出MathType公式编辑窗口,那么这是怎么回事呢?其实,这一问题也不是没有办法解决的,可以通过简单设置使得在Word 2013中调用MathType,下面就一起来

Nightmare安装and一个小例子

前端的功能测试 功能测试必须在真正浏览器做,现在有四种方法. 使用本机安装的浏览器 使用 Selenium Driver 使用 Headless Chrome 使用 Electron Nightmare 使用 Electron 模拟真实浏览器环境 提供大量人性化.易用的 API 官网:nightmarejs.org 1.nightmare依赖于electron.安装electron(http://www.cnblogs.com/tanyongli/p/7504603.html) 2.安装完后el