A standalone Luau runtime
Find a file
2023-03-16 09:56:37 +01:00
.cargo Deep dive and configure dependencies 2023-02-24 17:44:09 +01:00
.github/workflows Add testing of new roblox lib to CI 2023-03-10 11:39:54 +01:00
.lune Deep dive and configure dependencies 2023-02-24 17:44:09 +01:00
.vscode Add recommended extensions to vscode folder 2023-03-14 10:47:28 +01:00
docs Fix some incorrect docs 2023-03-08 13:05:19 +01:00
packages Implement Rect roblox datatype 2023-03-16 09:56:37 +01:00
tests Implement Rect roblox datatype 2023-03-16 09:56:37 +01: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
.gitignore Implement BrickColor roblox datatype 2023-03-15 10:18:13 +01:00
.luaurc Initial commit 2023-01-18 20:47:14 -05:00
aftman.toml Remove tool used for testing 2023-02-16 12:50:56 +01:00
Cargo.lock Implement BrickColor roblox datatype 2023-03-15 10:18:13 +01:00
Cargo.toml Add note about aborting in release profile to Cargo.toml 2023-03-14 10:50:34 +01:00
CHANGELOG.md Version 0.5.6 2023-03-11 08:29:57 +01:00
LICENSE.txt Add editorconfig, fix some formatting 2023-02-24 10:17:52 +01:00
README.md Fix typo in readme 2023-02-23 18:45:47 +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 🌙


Lune is a standalone Luau script runtime meant to be an alternative to traditional shell scripts, with the goal of drastically simplifying the typical tasks shell scripts are used for, making them easier to read and maintain.

Features

  • A strictly minimal but powerful interface that is easy to read and remember, just like Lua itself
  • Fully featured APIs for the filesystem, networking, stdio, all included in the small (~2mb) 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

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 here already, but Lune is meant for different purposes

Where do I start?

Head over to the wiki to get started using Lune!