Git Product home page Git Product logo

vscode-duktape-debug's Introduction

VSCode Debugger for Duktape

A Duktape debug client for Visual Studio Code.

Supported Duktape Versions:

  • v1.5.*+
  • v2.*+

See (#references) below for more information.

Screenshot

Features

  • Local scope inspection (Duktape only provides local scope).
  • "this" object binding inspection.
  • Deep object inspection (nested objects).
  • Source map support. *inlined currently unsupported*
  • Console input evals.
  • Artificial property inspection.

Status

It works. I'd like to refactor the code and polish it more as I find the time.

Usage

Create a new launch.json configuration file and configure the address and port to your debug server's listening address and port.

Example

// Add a new configuration to your 'launch.json' under 
// your workspace root/.vscode/ folder.
// Or select 'Add Configuration' from the debug bar dropdown menu.
"configurations": [
        {
            "name"        : "Duk Attach",
            "type"        : "duk",
            "request"     : "attach",
            "stopOnEntry" : false,
            
            "address"     : "localhost",
            "port"        : 9091,
            
            "localRoots"  : [ "${workspaceRoot}" ],
            
            "sourceMaps"  : true,
            "outDir"      : "${workspaceRoot}/bin"
        }

Debug Options

If you'd like to see the network traffic exchanged between the client and server, set the following option in your launch.json configuration:

"debugLog" : true

Debug Host (Server) Instructions

For the debugger client to work with your Duktape host application, you must enable the following preprocessor macros:

// See the official duktape documentation to learn
// how to configure these for your specific runtime version:
// https://github.com/svaarala/duktape/blob/master/doc/duk-config.rst

// Required to enable debugger support:
#define DUK_USE_DEBUGGER_SUPPORT
#define DUK_USE_INTERRUPT_COUNTER

// To enable heap object inspection:
// Note: If this option is not enabled, you will only
//  be able to inspect local variables in the call stack.
//  No object properties will be inspectble.
#define DUK_USE_DEBUGGER_INSPECT

// (Optional) To forward log calls to the client:
#define DUK_USE_DEBUGGER_FWD_LOGGING
#define DUK_USE_DEBUGGER_FWD_PRINTALERT

// (Optional) To notify the client when an error is about to be thrown:
#define DUK_USE_DEBUGGER_THROW_NOTIFY

// (Optional) To pause on an uncaught errors:
#define DUK_USE_DEBUGGER_PAUSE_UNCAUGHT


// The following option to enable the 'DumpHeap' command is currently unsupported.
#define DUK_USE_DEBUGGER_DUMPHEAP

For more information about the aforementioned options, see this entry on the Duktape wiki.

You must also have a transport layer written in your Duktape host application to enable debugging via duk_debugger_attach() or duk_debugger_attach_custom(). You may use Duktape's reference implementation.

For an example of an application with debugger support, please see Duktape's command line app.

References

The adapter uses the debugger protocol for Duktape version 1.5+ of, Including v2.*+. See: debugger.rst.

Acknoledgements

Special thanks to Sami Vaarala for developing Duktape, and for freely sharing it with the community. A "thank you" also to the VSCode team for facilitating their open-source IDE and the ability to easily make extensions for it. And finally, to those who has contributed to this project via bug reports or pull requests, thank you.

This code contains portions borrowed or adapted from the vscode nodeJS debugger and Sami Vaarala's web-based nodeJS reference implementation of a Dukatape debug client.

License

MIT

(c) Harold Brenes 2016-2017

Ἐμοὶ γὰρ, τὸ ζῆν Χριστὸς, καὶ τὸ ἀποθανεῖν, κέρδος.

vscode-duktape-debug's People

Contributors

andrewrch avatar bparvanov avatar desertkun avatar goniz avatar harold-b avatar koush avatar shaddockh avatar stephenbloomquist avatar willi1s avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.