How to debug Lua remotely?

前端 未结 5 998
南方客
南方客 2021-02-04 08:44

I\'m searching for the best way to debug Lua remotely, ( like from a web browser ).

I saw RemDebug, but the last project update was done on 2006. It works with Lua 5.0 a

5条回答
  •  死守一世寂寞
    2021-02-04 09:20

    Don't know for web-browser debugging (the idea seems weird to me, maybe you can detail why you would need a web-browser debugger ?)

    For a standalone debugger however, I've written a remote debugger with GUI : http://cushy-code.com/grld

    It communicates with the debugged program with the socket API, so any network connection will do, no need for HTTP.

    Hope this helps.

提交回复
热议问题