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
公式URL 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
Eメール [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'"
}