Reactive Extensions for Lua

bjorn cbe3baa794 Test Observable.filter; 10 سال پیش
doc 84384f3e57 Remove Observable.sum from core API; 10 سال پیش
examples bab9d281bd Add Observable.concat; Update README; Add concat example; 10 سال پیش
tests cbe3baa794 Test Observable.filter; 10 سال پیش
tools 5ff922f680 Update docroc; Update documentation; 10 سال پیش
.travis.yml 122b683bec Travis; 10 سال پیش
LICENSE d64834faa6 Initial commit; 10 سال پیش
README.md cfd2d5fc68 Move travis; 10 سال پیش
rx.lua 84384f3e57 Remove Observable.sum from core API; 10 سال پیش

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.