Node Debugger
Debug Node in Chrome devtools
What is Node Debugger?
Node Debugger is a Chrome extension developed by Apt-2531, and its main feature is "Debug Node in Chrome devtools".
Extension Screenshots
Download Node Debugger Extension CRX File
Download Node Debugger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Node Debugger |
ID | onmjjpakkhjdbkmpoocapmhnmaedeipb |
Official URL | https://chromewebstore.google.com/detail/node-debugger/onmjjpakkhjdbkmpoocapmhnmaedeipb |
Description | Debug Node in Chrome devtools |
File Size | 2.2 MB |
Installation Count | 1,586 |
Current Version | 0.6.0 |
Last Updated | 2016-10-28 |
Publish Date | 2016-10-28 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Apt-2531 |
[email protected] | |
Payment Type | free |
Supported Languages | 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'" } |