Gregor Hartmann
Gregor Hartmann
Would like to add 1 or 2 pull reques first.
I would suggest these at least: - [x] #3637 - [x] #3632 - [x] #3633 and maybe this one, but it would need a little bit of love first -...
When merging this PR a github workflow should start creating the release note together with attached luac.cross binaries for windows. So give it some time. Trigger is: ``` on: push:...
found some more changes that hepled me: - [x] #3638
I am using that scenario every day and it works. You obviously are doing "int" and "regular" builds. each build also creates a matching luac.cross/luac.cross.int (They also create different bytecode)...
Sounds interesting. We would probably also need different versions for int and 64 Bit builds. A PR would certainly be welcome.
There is a feature in the NodeMCU Lua to redirect input/output to Lua code which allows a simple console redirecting which can be used to redirect print as well. See...
Maybe it would even be possible to redirect the print statement. Maybe something like ``` oldprint = print function print (...) printResult = "" for i,v in ipairs(arg) do printResult...
Not exactly sure what you did. Maybe seeing the code would help. If you pass the _webout to node.output it does live on (and everything it uses) unless you reset...
ok about the metamethod error I am not sure but I assume that it is because httpserver calls its client functions in a coroutine. the connection:send collects output until it...