Node Debugger

Debug Node in Chrome devtools

Co to jest Node Debugger?

Node Debugger to rozszerzenie Chrome opracowane przez Apt-2531, a jego główną funkcją jest „Debug Node in Chrome devtools”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Node Debugger

Pobierz pliki rozszerzeń Node Debugger w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Node Debugger Node Debugger
ID onmjjpakkhjdbkmpoocapmhnmaedeipb
Oficjalny URL https://chromewebstore.google.com/detail/node-debugger/onmjjpakkhjdbkmpoocapmhnmaedeipb
Opis Debug Node in Chrome devtools
Rozmiar pliku 2.2 MB
Liczba instalacji 1,586
Aktualna Wersja 0.6.0
Ostatnia Aktualizacja 2016-10-28
Data Publikacji 2016-10-28
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Apt-2531
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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'"
}