The first argument is now a build type instead of a destination file. The build type can either be "base" or "luvit" and defaults to "base".
RxLua 
Reactive Extensions for Lua.
Examples
Cheer someone on using functional reactive programming:
local Rx = require 'rx'
Rx.Observable.fromRange(1, 4)
:map(function(x) return x * 2 end)
:concat(Rx.Observable.fromValue('who do we appreciate'))
:map(function(value) return value .. '!' end)
:subscribe(print)
See examples for more.
Documentation
See here.
Contributing
See here.
Tests
Uses lust. Run with:
lua tests/runner.lua
or, to run a specific test:
lua tests/runner.lua skipUntil
Related
License
MIT, see LICENSE
for details.
Description
Languages
Lua
100%