A standalone Luau runtime
Find a file
2023-05-20 10:12:40 +02:00
.cargo Try using different linker 2023-05-06 11:10:59 +02:00
.github/workflows Dont specify event types in CI pull request trigger 2023-05-19 17:04:47 +02:00
.lune Migrate tests to using new require builtins syntax and typedefs 2023-05-14 22:16:58 +02:00
.vscode Migrate tests to using new require builtins syntax and typedefs 2023-05-14 22:16:58 +02:00
docs Implement recursive arg for instance find methods, remove FindFirstDescendant 2023-05-20 10:02:06 +02:00
packages Update dependencies and Luau version 2023-05-20 10:12:40 +02:00
tests Implement recursive arg for instance find methods, remove FindFirstDescendant 2023-05-20 10:02:06 +02:00
.editorconfig Add editorconfig, fix some formatting 2023-02-24 10:17:52 +01:00
.gitattributes Try to force definitions file to have LF endings 2023-02-26 21:41:15 +01:00
.gitbook.yaml Fix readme location for gitbook 2023-03-24 14:09:16 +01:00
.gitignore Replace references to wiki with gitbook 2023-03-24 11:46:22 +01:00
.gitmodules Add roblox test files submodule 2023-03-21 19:29:23 +01:00
.justfile Move binaries in release workflow to let release action find them 2023-05-06 13:10:05 +02:00
.luaurc Initial commit 2023-01-18 20:47:14 -05:00
aftman.toml Fix tests being flaky 2023-03-22 14:12:05 +01:00
Cargo.lock Update dependencies and Luau version 2023-05-20 10:12:40 +02:00
Cargo.toml First draft for new setup & typedefs generation 2023-05-08 13:13:34 +02:00
CHANGELOG.md Update dependencies and Luau version 2023-05-20 10:12:40 +02:00
LICENSE.txt Add editorconfig, fix some formatting 2023-02-24 10:17:52 +01:00
README.md Remove unnecessary intro page from docs 2023-03-24 12:55:23 +01:00
selene.toml Initial commit 2023-01-18 20:47:14 -05:00
stylua.toml Initial commit 2023-01-18 20:47:14 -05:00

Lune 🌙


A standalone Luau script runtime.

Write and run scripts, similar to runtimes for other languages such as Node / Deno, or Luvit for vanilla Lua.

Lune provides fully asynchronous APIs wherever possible, and is built in Rust 🦀 for optimal safety and correctness.

Features

  • 🌙 A strictly minimal but powerful interface that is easy to read and remember, just like Luau itself
  • 🧰 Fully featured APIs for the filesystem, networking, stdio, all included in the small (~3mb) executable
  • 📚 World-class documentation, on the web or directly in your editor, no network connection necessary
  • 🏡 A familiar scripting environment for Roblox developers, with an included 1-to-1 task scheduler port
  • ✏️ Optional built-in library for manipulating Roblox place & model files, and their instances

Non-goals

  • Making scripts short and terse - proper autocomplete / intellisense make scripting using Lune just as quick, and readability is important
  • Running full Roblox game scripts outside of Roblox - there is some compatibility, but Lune is meant for different purposes

Where do I start?

Head over to the installation page to get started using Lune!