lua
lua copied to clipboard
The most ergomonic interface to Luerl in Elixir
- [ ] Full API coverage matching the `Luerl.New` interface - [ ] Livebook guide for working with Lua - [ ] Examples of working with external libraries like `luassert`...
I think that given that chunks are portable and don't need a state, it might be interesting to use luerl to turn ~LUA usages into Lua chunks. After all, it's...
Hi! I have this app in which users can provide their lua scripts. I don't have those in the filesystem so I need to intercept `require` calls somehow (I will...
Currently, if you pass a table to a `deflua` function, there's no way to get the raw `{:tref, _}` from it, which is a problem if you want to mutate...
Lua has a large ecosystem of off the shelf libraries, available through the Lua package manager, https://luarocks.org/ Lua should have an easy way to work with Lua packages, possibly even...
Hi, I've come accross the need to deepcast a nested LUA table that might contain empty tables which should be interpreted either as empty lists or empty maps. There does...