
Astra is a Rust based runtime environment for Lua (5.1-5.5), Luau and LuaJIT, and with native support for Teal. The goal is to get as much performance as possible while writing the logic in Lua instead for faster iteration, fault-tolerance and no-build requirements. This project is internally used here at ArkForge, by universities, research labs, and many large organizations.
For enterprise and business inquiries, send us an email at contact@arkforge.net
MSRV: 1.92+
installation
You can install using an installer script:
Linux
Windows
powershell -c "irm https://astra.arkforge.net/install.ps1 | iex"
Cargo
Alternatively you can also install through cargo tool, if you have it installed:
Example
-- Create a new server
local server = require..
-- Register a route
server:
-- Configure the server
server. = 3000
-- Run the server
server:
Or fancy some multi threaded async code
-- spawn an async task that does not block the running thread
spawn_task
What about some databases and serialization?
local my_data = require..
local db = require.
db:
pprint
There is also support for cryptography, datetime, jinja2, markdown, pubsub/observers, structure validation, async filesystem, and many more, check them at at the docs
Community Projects
- Astra Trails - https://github.com/0riginaln0/astra-trails
- Hack Club Clubs API - https://github.com/hackclub/clubapi
If you have a project that uses or extends Astra, let us know about it by extending the list above or opening a new issue
Where is the community?
In the past, we had a discord server where you could join and talk in, however we moved it to GitHub discussions instead. Please open conversations here from now on.
Note
This project may have breaking changes in minor versions until v1.0. Afterwhich semver will be followed. Contributions are always welcome!