Node.js V8 Inspector

Extension for launching V8 Inspector for Node.js debugging

Τι είναι το Node.js V8 Inspector;

Το Node.js V8 Inspector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Continuation Labs, και η κύρια λειτουργία του είναι "Extension for launching V8 Inspector for Node.js debugging".

Λήψη αρχείου CRX της επέκτασης Node.js V8 Inspector

Λήψη αρχείων επέκτασης Node.js V8 Inspector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Node.js V8 Inspector is a Chrome extension for attaching DevTools to running Node.js applications (requires Node v6.3.0). After installing this extension, debug your application using the following steps:

1. Run a Node.js application with the --inspect command line flag.
2. Open the node-v8-inspector extension in Chrome.
3. Verify that host and port match your application's host and debug port. The default value is 9229, the same default used by Node.js. The host defaults to localhost.
4. Press Launch V8 Inspector button.
5. Debug your application.
6. Profit (optional).

Source code at https://github.com/continuationlabs/node-v8-inspector                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Node.js V8 Inspector Node.js V8 Inspector
ID lfnddfpljnhbneopljflpombpnkfhggl
Επίσημο URL https://chrome.google.com/webstore/detail/nodejs-v8-inspector/lfnddfpljnhbneopljflpombpnkfhggl
Περιγραφή Extension for launching V8 Inspector for Node.js debugging
Μέγεθος Αρχείου 39.6 KB
Αριθμός Εγκαταστάσεων 2,000
Τρέχουσα Έκδοση 0.12.0
Τελευταία Ενημέρωση 2017-02-07
Ημερομηνία Δημοσίευσης 2017-02-07
Αξιολόγηση 3.78/5 Συνολικά 18 Αξιολογήσεις
Προγραμματιστής Continuation Labs
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://continuation.io
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/continuationlabs/node-v8-inspector
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Node.js V8 Inspector",
    "version": "0.12.0",
    "manifest_version": 2,
    "description": "Extension for launching V8 Inspector for Node.js debugging",
    "author": "Continuation Labs  (http:\/\/continuation.io\/)",
    "background": {
        "scripts": [
            "js\/common.js",
            "js\/load.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/logo32.png"
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "permissions": [
        "http:\/\/*\/",
        "storage",
        "notifications"
    ],
    "options_page": "settings.html",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+8",
                "mac": "Command+Shift+8",
                "chromeos": "Ctrl+Shift+8",
                "linux": "Ctrl+Shift+8"
            }
        }
    }
}