A small functional reactive programming library for JavaScript.
Questions tagged [bacon.js]
198 questions
0
votes
1 answer
.when for 3 properties in Bacon.js
Is there an easier way to implement combine3?
var Bacon = require('baconjs')
function emit(delay)
{
var s = new Bacon.Bus()
setTimeout(function ()
{
console.log("emit", delay)
s.push(delay)
…

nponeccop
- 13,527
- 1
- 44
- 106
-1
votes
1 answer
Emitting events with Bacon.js
I'm learning Bacon.js and I'm very confused as to how I'm supposed to emit events.
I have a super-simple example here of events in node.js
var events = require('events')
var eventEmitter = new events.EventEmitter()
eventEmitter.on("add",…

ThomasReggi
- 55,053
- 85
- 237
- 424
-1
votes
2 answers
Bacon.js call function every time element loses focus
Update I think I might have it figured out. I was using an old bacon.js version, which might have been part of the problem. I'll update later as I figure out if I have it. Here's the partially working version: http://cdpn.io/yfxDA
I'm trying to call…

Jon49
- 4,444
- 4
- 36
- 73