luvit

Asynchronous I/O and event-driven runtime for Lua

brewmacoslinux
Try with needOr install directly
Source

About

Asynchronous I/O for Lua

Commands

luvit

Examples

Run a Lua script with luvit runtime$ luvit script.lua
Start an interactive REPL session$ luvit
Run a simple HTTP server example$ luvit -e "require('http').createServer(function(req, res) res:writeHead(200) res:finish('Hello') end):listen(8080)"