Rendered at 22:22:56 GMT+0000 (Coordinated Universal Time) with Cloudflare Workers.
vrn-sn 3 days ago [-]
Lute is a general-purpose, Node.js-style runtime for Luau (https://luau.org/) that just hit 1.0.0. It supports filesystem operations, networking, process management, cryptography, and a proper module system, backed by libraries like libuv, curl, and libsodium.
The part we're most excited about: we've exposed APIs for manipulating Luau's syntax tree, so you can write code transformations directly against the language using Lute. This is especially useful if you're working with a large Luau codebase and want powerful tooling.
The team's happy to answer questions about the implementation or design decisions!
hmokiguess 2 hours ago [-]
How does it compare to Lune[1]? I use Lune for scripts today
Congrats on the 1.0.0 release! Being able to write custom tooling in Luau using the Luau parsing APIs will be awesome. Hopefully it makes updating tools to use new Luau features easier – at the moment I have a workflow with a custom-built parser which I'd have to modify to support, for example, the new `const` declarations; having easy access (from scripts) to regularly-updated parser APIs is a big deal for a language that's moving as quickly as Luau is.
jjmarr 2 hours ago [-]
Why would I go with Lute over something like Python if I was starting a new project?
pphysch 2 hours ago [-]
Seems like mainly a way to write Roblox compatible applications that aren't locked in to the Roblox platform?
giancarlostoro 33 minutes ago [-]
Not sure it even has to be Roblox compatible, but someone who writes Roblox code can take advantage of a familiar Lua variant.
The part we're most excited about: we've exposed APIs for manipulating Luau's syntax tree, so you can write code transformations directly against the language using Lute. This is especially useful if you're working with a large Luau codebase and want powerful tooling.
The team's happy to answer questions about the implementation or design decisions!
[1] https://github.com/lune-org/lune
I've built a data transforming tool powered by Lua[1] and would definitely like to benefit from an general purpose api/library like Lute.
1: https://github.com/dhuan/dop