Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.35 KB

useful-packages.md

File metadata and controls

30 lines (20 loc) · 1.35 KB

Useful Lua Packages

Core

Utility

  • serpent - lua serializer and pretty printer
  • inspect - transform lua into human readable representaton. Useful for reflection
  • lub - more general purpose lua library
  • penlight - useful general lua libraries
  • underscore.lua - more lua util

Interesting

  • luafun - functional programming for lua
  • luv - libuv binding for lua
  • coxpcall - encapsulated protected call that works with coroutines

Concurrency

  • hive - parallel multiple lua states / actor models
  • qnode - C + lua + actor model