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

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Hudell@lemmy.dbzer0.com 30 points 4 days ago (4 children)

Is there even an ecosystem? I don't think I have heard of anything for Lua itself, just the stuff that embed it.

[–] FaceDeer@fedia.io 17 points 4 days ago

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.

[–] MonkderVierte@lemmy.zip 6 points 4 days ago* (last edited 4 days ago) (1 children)

Ruby on Rails. 🚂🚃🚋🚃

[–] irelephant@lemmy.dbzer0.com 2 points 4 days ago

There is luarocks, which is better than nothing, but it's not great.

[–] SlurpingPus@lemmy.world 2 points 3 days ago

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.