Node Debugger

Debug Node in Chrome devtools

Node Debugger là gì?

Node Debugger là một tiện ích mở rộng Chrome được phát triển bởi Apt-2531, và tính năng chính của nó là "Debug Node in Chrome devtools".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Node Debugger

Tải xuống các tệp mở rộng Node Debugger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Node Debugger Node Debugger
ID onmjjpakkhjdbkmpoocapmhnmaedeipb
URL Chính Thức https://chromewebstore.google.com/detail/node-debugger/onmjjpakkhjdbkmpoocapmhnmaedeipb
Mô tả Debug Node in Chrome devtools
Kích Thước Tệp 2.2 MB
Số Lần Cài Đặt 1,586
Phiên Bản Hiện Tại 0.6.0
Cập Nhật Lần Cuối 2016-10-28
Ngày Phát Hành 2016-10-28
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Apt-2531
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}