mirror of
https://github.com/lune-org/lune.git
synced 2025-04-11 22:10:53 +01:00
A standalone Luau runtime
JSON5 is a superset of JSON, which includes support for trailing commas, extra whitespaces, comments, and an expanded set of numbers. This commit adds mainly decoding support for json5, in `@lune/serde`. Encoding "support" is also included, but isn't a practical use-case. * Expanded `EncodeDecodeFormat` to have a `Json5` variant * Handled JSON5 decoding using `serde_json5` crate * Matched JSON5 encoding alongside JSON |
||
---|---|---|
.cargo | ||
.github/workflows | ||
.lune | ||
.vscode | ||
assets/logo | ||
scripts | ||
src | ||
tests | ||
types | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
.gitmodules | ||
.justfile | ||
.luaurc | ||
aftman.toml | ||
Cargo.lock | ||
Cargo.toml | ||
CHANGELOG.md | ||
CONTRIBUTING.md | ||
LICENSE.txt | ||
README.md | ||
selene.toml | ||
stylua.toml |
Lune
A standalone Luau runtime.
Write and run programs, similar to runtimes for other languages such as Node, Deno, Bun, or Luvit for vanilla Lua.
Lune provides fully asynchronous APIs wherever possible, and is built in Rust 🦀 for speed, safety and correctness.
Features
- 🌙 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 (~5mb) executable
- 📚 World-class documentation, on the web or directly in your editor, no network connection necessary
- 🏡 Familiar runtime 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 programs short and terse - proper autocomplete / intellisense make using Lune just as quick, and readability is important
- Running full Roblox games 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!