lune icon indicating copy to clipboard operation
lune copied to clipboard

A standalone Luau runtime

Results 77 lune issues
Sort by recently updated
recently updated
newest added

Currently, the `SpawnOptionsStdioKind` enum isn't very intuitive to users and definitely needs more attention. This will likely require a breaking change where the current functionality would no longer hold. Hence,...

enhancement

[Created from a Discord conversation](https://discord.com/channels/385151591524597761/1253654714936066050) >[1:49 PM] (Erica) DevComp: ill implement a process.stdin which hands you the stdin you were given >[1:49 PM] (Erica) DevComp: and you can put that...

enhancement
pending / needs design

On the installation page, it says that lune is packaged in a way that is compatible with cargo binstall. However, when I try to install it with cargo binstall it...

needs information / investigation

Example: ```lua local t = setmetatable({}, { __tostring = "Foo" }) print(t) --> { } (should be Foo) ``` This happens because the formatter has an additional layer for formatting...

bug

Example: ``` [string "Lists.spec"]:201: attempt to index boolean with 'match' [Stack Begin] Script 'Lists.spec', Line 201 Script 'Lists.luau', Line 400 Script 'Lists.luau', Line 333 ... [Stack End] ``` Including the...

bug

## Context Writing this after I raised an initial discussion in the OSS Discord [here](https://discord.com/channels/385151591524597761/1132795112259321896/1249081303953838092) ## Issue The error `failed to find alias '{alias}' (no .luaurc)` presents itself and can...

enhancement

Currently, there is no way to process the stdout stream of any process spawned with `process.spawn`. My current use case is being able to spawn multiple processes and label each...

enhancement

Lune gives one of the following errors when you multiply a Vector2 or Vector3 by a scalar on the left: ```bash bad argument `self` to `Vector2.__mul`: userdata is not expected...

bug
good first issue
roblox

## Summary At the moment Lune has no support for UDP sockets in it's standard `@lune/net` library. On a personal project I am working on - Discord requires support for...

enhancement
pending / needs design

Previous PR was closed due to infinite yielding which I've yet been unable to reproduce with these changes.