開發桌面應用框架 Atom Shell

edithfang發表於2014-12-28
Atom即構建在 atom-shell 之上。

與 Node-Webkit 的區別

atom-shell 和Node-Webkit很像,那麼兩者有什麼區別呢?

1. 程式入口

Node-Webkit 的程式入口是一個網頁,你在package.json中指定主頁,然後這個主頁會在瀏覽器中開啟,作為應用程式的主視窗。

atom-shell 的程式入口則是一個 JavaScript 指令碼,而不是直接指定一個 URL。你需要手動建立瀏覽器視窗,並通過相應的 API 載入 html 檔案。你同時需要監聽視窗事件以便決定何時退出應用。

因此,atom-shell 更接近 Node.js 執行時,API 也更加底層,你可以利用 atom-shell 進行 web 測試,類似phantomjs。

2. 編譯系統

atom-shell 使用libchromiumcontent訪問 Chromium 的 Content API,這樣編譯 atom-shell 的時候就不用編譯整個 Chromium (編譯 Chromium 非常費時)。

順便提一下,GitHub 開發者還建立了brightray庫,讓 libchromiumcontent 的使用更方便。

3. Node 整合

Node-Webkit 的 Node 整合需要給 Chromium 打補丁才能工作。atom-shell 通過整合 libuv loop 和 平臺的 message loop 避免給 Chromium 打補丁。

4. Multi-context

Node-Webkit 創造了 Node context 和 web context 的概念,而 atom-shell 沒有引入新的 context,而是直接使用 Node 的 Multi-context 特性(這一特性是 Atom 開發者贊助 Node 新增的)。

作者

GitHub 最初考察了 Node-Webkit,但是最終還是決定僱傭@zcbenz來開發想要的框架。於是 atom-shell 誕生了。

一個最簡單的 hello atom 示例專案請看 hello-atom

主程式示例:

var app = require('app');  // Module to control application life.
var BrowserWindow = require('browser-window');  // Module to create native browser window.
 
// Report crashes to our server.
require('crash-reporter').start();
 
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the javascript object is GCed.
var mainWindow = null;
 
// Quit when all windows are closed.
app.on('window-all-closed', function() {
  if (process.platform != 'darwin')
    app.quit();
});
 
// This method will be called when atom-shell has done everything
// initialization and ready for creating browser windows.
app.on('ready', function() {
  // 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');
 
  // 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;
  });
});


支援很多桌面應用特性,例如 Dock 選單等:



使用 Dock 選單的方法:

var app = require('app');
var Menu = require('menu');
var dockMenu = Menu.buildFromTemplate([
  { label: 'New Window', click: function() { console.log('New Window'); } },
  { label: 'New Window with Settings', submenu: [
    { label: 'Basic' },
    { label: 'Pro'},
  ]},
  { label: 'New Command...'},
]);
app.dock.setMenu(dockMenu);


PS:網易也有開放了Hex,同樣是不滿意node-webkit,就自己做了套.
相關閱讀
評論(1)

相關文章