Node Debugger

Debug Node in Chrome devtools

Node Debugger란 무엇입니까?

Node Debugger은(는) Apt-2531에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Debug Node in Chrome devtools"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Node Debugger 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
}