SaaSHub helps you find the best software and product alternatives Learn more →
Lume Alternatives
Similar projects and alternatives to lume
-
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
-
-
plenary.nvim
plenary: full; complete; entire; absolute; unqualified. All the lua functions I don't want to write twice.
-
-
-
-
InfluxDB
InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
-
-
-
-
-
-
-
Penlight
A set of pure Lua libraries focusing on input data handling (such as reading configuration files), functional programming (such as map, reduce, placeholder expressions,etc), and OS path management. Much of the functionality is inspired by the Python standard libraries.
-
-
-
lume
Discontinued Create and run high-performance macOS and Linux VMs on Apple Silicon, with built-in support for AI agents. [Moved to: https://github.com/trycua/cua]
-
-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
lume discussion
lume reviews and mentions
-
Show HN: Lume – OS Lightweight CLI/API for macOS/Linux VMs on Apple Silicon
Name clash with the not very well known Lua library, you should strongly consider changing the name https://github.com/rxi/lume
- fe: A tiny, embeddable language implemented in ANSI C
-
What would be the significant benefits if one would develop equivalent libraries that are available for Python for Lua/Nelua?
Lua is a small language and its "standard library" is very minimal. Lua's intended for embedding so usually the host program provides a broader standard library by exposing functions to lua. However, there are several standard library packages for lua: batteries and lume are focused on gamedev; Penlight aims at bringing the breadth of python's stdlib to lua; plenary.nvim for nvim plugins; and probably more for other domains. I'd definitely recommend checking these out to help get closer to functionality level of most other languages (I use both lume and batteries, but dropped penlight awhile back because I found some implementations confusing/overcomplicated/inconsistent).
-
The first release of DeathVim
Making a lua-based distro might benefit from packing in an existing lua utility library instead of starting your own: lume (useful single file of utilities) or batteries (organized into modules).
-
Thoughts on LUA?
Second, hot reload actually works and is usually instant. (lume has one you can adapt, I use gabe's class system and reload since it's already integrated). Since an instance of an object is a table, and functions on the object are elements in a table, you can swap out functions for their new values and keep your current state. By comparison, Unity's C# hot code reloading requires you to serialize your state because it needs to unload the AppDomain. It needs to rebuild the world with the new types. Most serialization occurs automatically, but often it doesn't and you need to add special callbacks to make it work. Regardless, for projects of any real size, it's slow. Not sure how Unreal's Live++ (Live Coding) works, but seems like you can't edit .h files.
-
Idiomatic way to differentiate an ordered table from an unordered one?
From lume:
-
JS-object-like functions for lua tables
Or check out Lume.
-
Lua Table Serializatio
Yeah, lume is not a tiny library, but you can simply take only the functions you need from it. It's source code is very easy to read and (de)serialization implemented there in pretty minimalistic way.
-
Spreading tables in Lua
I'm not very familiar with javascript and its spreading operator, but it seems to me that something similar is in lume. Check out lume.extend and lume.merge.
-
A note from our sponsor - SaaSHub
www.saashub.com | 29 Apr 2025
Stats
rxi/lume is an open source project licensed under MIT License which is an OSI approved license.
The primary programming language of lume is Lua.