this post was submitted on 12 Nov 2025
247 points (99.2% liked)
Programmer Humor
27343 readers
842 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Is there even an ecosystem? I don't think I have heard of anything for Lua itself, just the stuff that embed it.
There is. luarocks is basically the "pip" equivalent for lua, it installs packages (called "rocks") and manages dependencies. These packages can extend lua with all sorts of practical capabilities.
Ruby on Rails. 🚂🚃🚋🚃
trams when?
There is luarocks, which is better than nothing, but it's not great.
Lua works smooth like butter with binary libraries written in C (since it's made to be embeddable in C), but also it's so fast that for many things people just do libraries in plain Lua.