ホームページ > 記事 > ウェブフロントエンド > Electron は html js css を使用して Windows_html/css_WEB-ITnose でデスクトップ アプリケーションを開発します
1.atom/electron
https://github.com/atom/electron
https://github.com/atom/electron/tree/master/docs-translations/ zh-CN
2.electron-v0.36.5-win32-x64 をダウンロードしますhttps://github.com/atom/electron/releases/download/v0.36.5/electron-v0.36.5-win32-x64.zip
3新しいプロジェクトの作成 - クイック スタート:https://github.com/atom/electron/blob/master/docs-translations/zh-CN/tutorial/quick-start.md
通常、Electron アプリケーションのディレクトリ構造は次のとおりです:
your-app/├── package.json├── main.js└── index.html
electron は、html、js、css を使用して Windows_you-app.rar
{ "name": "your-app", "version" : "0.1.0", "main": "main.js"}
var app = require('app'); // 控制应用生命周期的模块。var BrowserWindow = require('browser-window'); // 创建原生浏览器窗口的模块// 保持一个对于 window 对象的全局引用,不然,当 JavaScript 被 GC,// window 会被自动地关闭var mainWindow = null;// 当所有窗口被关闭了,退出。app.on('window-all-closed', function() { // 在 OS X 上,通常用户在明确地按下 Cmd + Q 之前 // 应用会保持活动状态 if (process.platform != 'darwin') {app.quit(); }});// 当 Electron 完成了初始化并且准备创建浏览器窗口的时候// 这个方法就被调用app.on('ready', function() { // 创建浏览器窗口。 mainWindow = new BrowserWindow({width: 800, height: 600}); // 加载应用的 index.html mainWindow.loadURL('file://' + __dirname + '/index.html'); // 打开开发工具 mainWindow.openDevTools(); // 当 window 被关闭,这个事件会被发出 mainWindow.on('closed', function() {// 取消引用 window 对象,如果你的应用支持多窗口的话,// 通常会把多个 window 对象存放在一个数组里面,// 但这次不是。mainWindow = null; });});
<!DOCTYPE html><html> <head><title>Hello World!</title> </head> <body><h1>Hello World!</h1>We are using io.js <script>document.write(process.version)</script>and Electron <script>document.write(process.versions['electron'])</script>. </body></html>4. アプリケーションのデプロイメント:
https://github.com/atom/electron/blob/master/docs-translations/zh-CN/tutorial/application-distribution.md
を使用してアプリケーションをデプロイするにはElectron アプリケーション。アプリケーションを保存するフォルダーは app という名前で、Electron のリソース フォルダーに配置する必要があります (OS X では、Electron.app/Contents/Resources/ を意味し、Linux および Windows では、resources/ を意味します)。次のように:
Windows および Linux:
electron/resources/app├── package.json├── main.js└── index.html
http://jingyan.baidu.com/article/2d5afd69e243cc85a2e28efa.html
https://nodejs.org/dist/v5.5.0/node-v5.5.0-x64.msi
C:\Users\yhcao>node -vv5.5.0C:\Users\yhcao>npm -v3.3.12
いいえ。ステップ 1: asar
npm install -g asarをインストールします。
ステップ 2:
asar pack your-app app.asarをパックします。例: asar Pack F:atom_projectmyatom_1 F:atom_projectapp.asar
これにより、myatom_1 が app.asar
にパックされます。
5. Electron 名を変更します
Electron.exe を任意の名前に変更し、rcedit または ResEdit を使用してアイコンやその他の情報を編集できます。解像度編集: