shuizhongyu / electron-quick-start

Clone to try a simple Electron app

Home Page:https://electron.atom.io/docs/tutorial/quick-start/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

初试electron

node.js npm安装好之后,

npm run start

运行

可运行得下图:

1544152806273

运行所需要的文件:

  • package.json - 指向app的主程序,列出app的细节和依赖。如app名称,版本,描述,关键字,作者,等细节。如果要打包程序,打包信息也要在这里描述,包括图标,背景等所有需要的东西。
  • main.js -app的主程序,来开始运行app,生成一个浏览器窗口来渲染html
  • index.html - 即本例中要渲染的网页

打包

上例中的package.json改为listen1中的相应文件,可以打包为appiamge/deb/tar.gz,参见dist下。

npm run dist:liunxx64

electron-quick-start

Clone and run for a quick way to see Electron in action.

This is a minimal Electron application based on the Quick Start Guide within the Electron documentation.

Use this app along with the Electron API Demos app for API code examples to help you get started.

A basic Electron application needs just these files:

  • package.json - Points to the app's main file and lists its details and dependencies.
  • main.js - Starts the app and creates a browser window to render HTML. This is the app's main process.
  • index.html - A web page to render. This is the app's renderer process.

You can learn more about each of these components within the Quick Start Guide.

To Use

To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:

# Clone this repository
git clone https://github.com/electron/electron-quick-start
# Go into the repository
cd electron-quick-start
# Install dependencies
npm install
# Run the app
npm start

Note: If you're using Linux Bash for Windows, see this guide or use node from the command prompt.

Resources for Learning Electron

License

CC0 1.0 (Public Domain)

About

Clone to try a simple Electron app

https://electron.atom.io/docs/tutorial/quick-start/

License:Creative Commons Zero v1.0 Universal


Languages

Language:JavaScript 76.3%Language:HTML 23.7%