Lua(u) bindings for TauriApps
v2 is completely independent from lune, we have our own task scheduler/library implementation, which also is not fully compatible with Lune/Roblox
the new task scheduler runs in the windowing thread which results in getting immediate results when you change a property on a window + things like resizing a window will no longer block your luau threads
once lune switches to mlua 0.10.x the lune std libraries will be added to the globals environment
e.g. to access the net library you'll use lune.net
lune.net.serve(8080, function(request)
return {
status = 200,
body = "Echo:\n" .. request,
}
end)