Node Debugger

Debug Node in Chrome devtools

Node Debugger क्या है?

Node Debugger Apt-2531 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Debug Node in Chrome devtools"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Node Debugger एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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'"
}