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
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.