Reactive Extensions for Lua

bjorn 84384f3e57 Remove Observable.sum from core API; 10 years ago
doc 84384f3e57 Remove Observable.sum from core API; 10 years ago
examples bab9d281bd Add Observable.concat; Update README; Add concat example; 10 years ago
tests d7fd9830e6 Add immediate scheduler; 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 84384f3e57 Remove Observable.sum from core API; 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.