Node Debugger

Debug Node in Chrome devtools

ما هو Node Debugger؟

Node Debugger هو إضافة Chrome تم تطويرها بواسطة Apt-2531، والميزة الرئيسية لها هي "Debug Node in Chrome devtools".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Node Debugger

قم بتنزيل ملفات الامتداد Node Debugger بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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'"
}