Reactive Extensions for Lua

bjorn cfd2d5fc68 Move travis; 10 years ago
doc 5ff922f680 Update docroc; Update documentation; 10 years ago
examples bab9d281bd Add Observable.concat; Update README; Add concat example; 10 years ago
tests 82aa346555 Test Observable.changes; Fix test runner; Change Observable.fromTable; 10 years ago
tools 5ff922f680 Update docroc; Update documentation; 10 years ago
.travis.yml 122b683bec Travis; 10 years ago
LICENSE d64834faa6 Initial commit; 10 years ago
README.md cfd2d5fc68 Move travis; 10 years ago
rx.lua 82aa346555 Test Observable.changes; Fix test runner; Change Observable.fromTable; 10 years ago

README.md

RxLua Build Status

Reactive Extensions for Lua.

Examples

Cheer someone on using functional reactive programming:

local Rx = require 'rx'

Rx.Observable.fromRange(2, 8, 2)
  :concat(Rx.Observable.fromValue('who do we appreciate'))
  :map(function(value) return value .. '!' end)
  :subscribe(print)

See examples for more.

Documentation

See here.

Related

License

MIT, see LICENSE for details.