Skip to content
| Marketplace
Sign in
Visual Studio Code>Debuggers>luadap-vscodeNew to Visual Studio Code? Get it now.
luadap-vscode

luadap-vscode

lolrobbe2

| (0) | Free
extension to connect with the luadap server
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

luadap

luadap is a remote debugger like mobdebug but uses the DAP(Debug Adapter Protocol)

how to use

to use luadap you need two things:

  1. luasocket dynamic library
  2. luadap.lua (https://github.com/lolrobbe2/luadap)

place the following in you main script:

local luadap = require("luadap")

-- Start the Luadap server

-- Main loop to accept client connections and handle data

luadap.start()

launch.json

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "luadap",
            "name": "Launch Sandbox",
            "request": "attach",
            "host": "localhost",
            "port": 3000,
        }
    ]
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft