Ask HN: Looking for platforms, other than Roblox, that have adopted Luau
1–10 of 25 posts
Re: Ask HN: Looking for platforms, other than Roblox, that have adopted Luau
#2Re: Ask HN: Looking for platforms, other than Roblox, that have adopted Luau
#3From looking at the Github repo's contributors, forks, etc it doesn't look like it.
ChatGPT says it isn't used outside of Roblox, but google found this cross-dev game framework that has their own variant they've started: giderosmobile.com. But Google doesn't show anyone else?
Re: Ask HN: Looking for platforms, other than Roblox, that have adopted Luau
#4Re: Ask HN: Looking for platforms, other than Roblox, that have adopted Luau
#5https://www.wowhead.com/guide/comprehensive-beginners-guide-...
Re: Ask HN: Looking for platforms, other than Roblox, that have adopted Luau
#6Factorio uses Lua script for both in-game and mod scripting: https://wiki.factorio.com/Tutorial:Scripting
Re: Ask HN: Looking for platforms, other than Roblox, that have adopted Luau
#7For context, I first started using Luau as an experimental hack by integrating it with Unity. I mostly just wanted fast and simple hot reloading. I found myself writing more and more of it, and now I'm writing most of my code in it.
VS Code support is pretty good via the luau-lsp language server [2]. Type support for certain code patterns isn't great yet, but there are RFCs to improve this.
They're also quietly working on native code gen and JIT support, e.g. this PR from a few hours ago [3].
Overall, recommended! You're not crazy.
[1] https://twitter.com/kineticpoet
Re: Ask HN: Looking for platforms, other than Roblox, that have adopted Luau
#8> Luau is syntactically backwards-compatible with Lua 5.1 (code that is valid Lua 5.1 is also valid Luau); however, we have extended the language with a set of syntactical features that make the language more familiar and ergonomic.
Re: Ask HN: Looking for platforms, other than Roblox, that have adopted Luau
#9World of Warcraft interface addons are made with Lua. https://www.wowhead.com/guide/comprehensive-beginners-guide-...
Re: Ask HN: Looking for platforms, other than Roblox, that have adopted Luau
#10Is there a transpired from Luau to Lua? Otherwise you could never go back, you would eventually be forced to use their run time. Do they have an interpreter only mode? Can you run on web assembly?