Node Debugger

Debug Node in Chrome devtools

什麼是Node Debugger?

Node Debugger是由Apt-2531開發的Chrome擴展程式,該擴展的主要功能是“Debug Node in Chrome devtools”。

擴展截圖

screenshot
screenshot

下載Node Debugger擴展crx文件

下載Node Debugger擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Connect to v8 inspector debugging instances! This extension allows you to save configured debugging sessions and will automatically check them for availability on startup.

To quickly get started you can do the following:
 - Start a node 6.3+ process with the --inspect flag set (this will start a debugging session at localhost:9229)
 - Click on the extension icon in Chrome and see that the Default session is available.
 - Click on the Default session and a new Chrome window will load with the devtools connected to node.
 - Carry on making great apps!

Roadmap ahead:
 - Attempt to detect when the debugger goes offline (this happens frequently in development with Nodemon) and attempt to reconnect automatically                    

擴展基本資訊

名稱 Node Debugger Node Debugger
ID onmjjpakkhjdbkmpoocapmhnmaedeipb
官方網址 https://chromewebstore.google.com/detail/node-debugger/onmjjpakkhjdbkmpoocapmhnmaedeipb
簡介 Debug Node in Chrome devtools
檔案大小 2.2 MB
安裝次數 1,586
目前版本 0.6.0
更新時間 2016-10-28
上架時間 2016-10-28
評分 5.00/5 共 3 次評分
開發者 Apt-2531
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Node Debugger",
    "description": "Debug Node in Chrome devtools",
    "version": "0.6.0",
    "browser_action": {
        "default_popup": "index.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "icons": {
        "32": ".\/assets\/icon32.png",
        "64": ".\/assets\/icon64.png",
        "128": ".\/assets\/icon128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}