首頁 > 開發工具 > sublime > 使用sublime text 2和3調試node-webkit

使用sublime text 2和3調試node-webkit

藏色散人
發布: 2019-10-02 14:34:41
轉載
2861 人瀏覽過

下面由sublime使用教學欄位來介紹sublime text 2和3調試node-webkit的方法,希望對需要的朋友有幫助!

使用sublime text 2和3調試node-webkit

sublime text 2是非常優秀的跨平台編輯器用於開發node-webkit應用。

Mac OS X

1.下載node-webkit.app並放在/Application資料夾內

2.從sublime text 2選單選擇Tools -> Build System -> New Build System

3.輸入以下程式碼:

{
    "cmd": ["node-webkit", "--enable-logging", "${project_path:${file_path}}"],
    "working_dir": "${project_path:${file_path}}",
    "path": "/Applications/node-webkit.app/Contents/MacOS/"
}
登入後複製

1.使用sublime text 2的File -> New Window開啟一個新的視窗

2.使用Project -> Add Folder to Project新增一個工程到目前視窗中

3.從左邊的選單中開啟你的主應用程式檔案(例如:index.html )然後選擇Tools -> Build

4.此時node-webkit應用程式將會啟動你的專案並且可以在sublime text2中看到偵錯輸出

在sublime text3中使用方法一樣。

Windows

同上面一樣,不同的是建立系統的命令,如下所示(替換掉nw.exe的實際路徑):

{
    "cmd": ["nw.exe", "--enable-logging", "${project_path:${file_path}}"],
    "working_dir": "${project_path:${file_path}}",
    "path": "C:/Tools/node-webkit/",
    "shell": true
}
登入後複製

以上是使用sublime text 2和3調試node-webkit的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:segmentfault.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板