lua-resty-repl
lua-resty-repl copied to clipboard
Interactive console (REPL) for Openresty and luajit code
GitHub [deprecated usage of `git://` (unencrypted Git protocol) on March 15th, 2022](https://github.blog/changelog/2022-03-15-removed-unencrypted-git-protocol-and-certain-ssh-keys/), so LuaRocks will fail to install any package including a `source.url` starting with `git://`. According to the [LuaRocks...
When debugging lua code, it does nothing, just prints `^C`. When debugging nginx, it prints `^C` and then nginx handles `SIGINT`. Most reasonable behavior would be to: 1. show next...
Currently when looking at completion result, it's hard to understand, what is the type value of particular key: ``` [3] ngx(content)> ngx.loca ngx.localtime ngx.location ``` where - `ngx.localtime` is a...
from standalone console: ``` $ make repl [1] ngx(timer)> print(123) 123 => true ``` but when debugging nginx: ``` # nginx -c /tmp/ngx.conf ... log messages here ... [1] ngx(content)>...