A standalone Luau runtime
Find a file
2023-02-26 17:11:29 +01:00
.cargo Deep dive and configure dependencies 2023-02-24 17:44:09 +01:00
.github/workflows Update workflow action rust install step 2023-02-23 21:05:25 +01:00
.lune Deep dive and configure dependencies 2023-02-24 17:44:09 +01:00
.vscode Hide generated dirs in vscode explorer 2023-02-26 16:09:17 +01:00
docs Version 0.5.1 2023-02-25 13:41:50 +01:00
packages Fix formatting-related panic 2023-02-26 13:59:34 +01:00
tests Add support for query pairs in net.request params 2023-02-23 11:31:42 +01:00
.editorconfig Add editorconfig, fix some formatting 2023-02-24 10:17:52 +01:00
.gitattributes Temporarily syntax highlight .luau files as normal lua 2023-01-23 20:55:43 -05:00
.gitignore Prepare for autogeneration of selene type definitions 2023-02-16 12:28:17 +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 Bump package version 2023-02-25 13:42:09 +01:00
Cargo.toml Version 0.5.2 2023-02-26 17:11:29 +01:00
CHANGELOG.md Version 0.5.2 2023-02-26 17:11:29 +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!